Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -1,129 +1,21 @@
|
|
| 1 |
-
# VMem-Bench: Memory-aware causal long video generation
|
| 2 |
-
This Hugging Face dataset contains **textual gold / prompts only**. Source videos are not redistributed: obtain BlenderOpenMovies and LSMDC under their original terms. Annotations are CC BY 4.0 (see `LICENSE`).
|
| 3 |
-
|
| 4 |
---
|
| 5 |
-
|
| 6 |
-
|
| 7 |
---
|
| 8 |
|
| 9 |
-
#
|
| 10 |
-
|
| 11 |
-
Track B tests whether a causal long-video generator can carry visual memory all
|
| 12 |
-
the way into generated pixels. The SUT only receives a chronological prompt
|
| 13 |
-
stream; GT is scoring-only.
|
| 14 |
-
|
| 15 |
-
## Frozen Status
|
| 16 |
-
|
| 17 |
-
Frozen samples are listed in `freeze_manifest.json`.
|
| 18 |
-
|
| 19 |
-
Current frozen sample:
|
| 20 |
-
|
| 21 |
-
- `0001_lighthouse_keeper` (`trackB-0001-v1`, `gt_version=trackB-gt-2.0`)
|
| 22 |
-
|
| 23 |
-
Do not edit frozen GT/prompt files in place. If a frozen sample must change,
|
| 24 |
-
create a new freeze version and update hashes in `freeze_manifest.json`.
|
| 25 |
-
|
| 26 |
-
## Files
|
| 27 |
-
|
| 28 |
-
- `gt_source/<story>.json`: human-authored source layer.
|
| 29 |
-
- `gt/<story>.json`: completed scoring GT generated by `complete_gt.py`.
|
| 30 |
-
- `sut_prompts/<story>_<register>.json`: SUT-facing prompt stream generated by
|
| 31 |
-
`get_sut_prompts.py`.
|
| 32 |
-
- `freeze_manifest.json`: immutable sample list and SHA256 hashes.
|
| 33 |
-
|
| 34 |
-
## Current Scale
|
| 35 |
-
|
| 36 |
-
The current validated authoring pool contains 50 long-horizon narrative cases.
|
| 37 |
-
These are story-level cases, not single-prompt VBench-style cases: each case is
|
| 38 |
-
a temporally ordered prompt stream with many segment-level memory probes.
|
| 39 |
-
|
| 40 |
-
- Story-level cases: 50.
|
| 41 |
-
- Segment-level cases: 6,161.
|
| 42 |
-
- Segment count per story: mean 123.22, median 117, range 68-197.
|
| 43 |
-
- Segment-count buckets: 50-80: 8 stories; 81-120: 19 stories; 121-160: 8
|
| 44 |
-
stories; 161-200: 15 stories.
|
| 45 |
-
- Segment duration: 5 seconds.
|
| 46 |
-
- Total scripted video duration: 30,805 seconds, or 8.56 hours.
|
| 47 |
-
- Average story duration: 616.1 seconds, or 10.27 minutes.
|
| 48 |
-
- Story duration range: 5.67-16.42 minutes.
|
| 49 |
-
|
| 50 |
-
Hard-case annotations are segment-level. Across the 50-story pool, the current
|
| 51 |
-
derived GT contains: lookalike disambiguation 723, state change 401,
|
| 52 |
-
persist-state 1,878, count memory 279, false friend 250, deprecation avoidance
|
| 53 |
-
578, reference-indirect 329, long-gap reappearance 476, and temporal reference
|
| 54 |
-
265 tagged segments. Each story has at least 5 instances for every required
|
| 55 |
-
hard-case family, and the current `sut_prompts/` files have zero prompt-rendering
|
| 56 |
-
warnings.
|
| 57 |
-
|
| 58 |
-
## Author Layer: `gt_source`
|
| 59 |
-
|
| 60 |
-
Humans write only the semantic skeleton:
|
| 61 |
-
|
| 62 |
-
- `entities`: stable entity IDs (`E1`, `E2`, ...) with `name`, `kind`, and either
|
| 63 |
-
`appearance` or state-specific `states`.
|
| 64 |
-
- `state_machines`: ordered state labels for stateful entities.
|
| 65 |
-
- `lookalike_pairs`: explicit pairs and distinguishing features.
|
| 66 |
-
- `scenes`: chronological scenes with `present`, per-segment `actions`, optional
|
| 67 |
-
per-action `present`, optional `lookalike_present`, and semantic events:
|
| 68 |
-
`state_change` or `remove`.
|
| 69 |
-
|
| 70 |
-
Do not hand-write memory labels such as `recall_after_gap`, `forbidden`, or
|
| 71 |
-
probe buckets. They are derived by `complete_gt.py`.
|
| 72 |
-
|
| 73 |
-
## Completed GT: `gt`
|
| 74 |
-
|
| 75 |
-
`complete_gt.py` derives:
|
| 76 |
-
|
| 77 |
-
- per-entity `op`: `introduce`, `recall`, `recall_after_gap`, `transform`,
|
| 78 |
-
`persist`;
|
| 79 |
-
- gap and last-seen metadata;
|
| 80 |
-
- `memory_probes` capability tags;
|
| 81 |
-
- `forbidden` entries for removals and absent lookalikes;
|
| 82 |
-
- state payloads for transform/persist cases;
|
| 83 |
-
- summary counts and balance diagnostics.
|
| 84 |
-
|
| 85 |
-
The scorer reads the v2 schema: `cast`, `forbidden`, `memory_probes`, and
|
| 86 |
-
`lookalike_active`. It derives present sets and decoys at score time.
|
| 87 |
-
|
| 88 |
-
## SUT Prompts
|
| 89 |
-
|
| 90 |
-
`get_sut_prompts.py` creates the only SUT-facing input. For `name_anchored`:
|
| 91 |
-
|
| 92 |
-
- `introduce`: inject the entity's initial appearance after the name;
|
| 93 |
-
- `transform`: inject the new state's appearance after the name;
|
| 94 |
-
- `recall`, `recall_after_gap`, `persist`: keep only the bare name;
|
| 95 |
-
- `forbidden`: never inject appearance, even if the name appears indirectly.
|
| 96 |
-
|
| 97 |
-
The prompt stream must contain no entity IDs, probe labels, forbidden labels, or
|
| 98 |
-
scoring fields.
|
| 99 |
-
|
| 100 |
-
## Freeze Checklist
|
| 101 |
-
|
| 102 |
-
A sample can be frozen only if all checks pass:
|
| 103 |
-
|
| 104 |
-
1. `gt_version` is `trackB-gt-2.0`.
|
| 105 |
-
2. `gt/<story>.json` regenerates byte-identically from `gt_source/<story>.json`.
|
| 106 |
-
3. `sut_prompts/<story>_name_anchored.json` regenerates byte-identically from GT.
|
| 107 |
-
4. SUT prompt warnings are zero.
|
| 108 |
-
5. SUT prompts contain no labels (`E#`, `memory_probes`, `forbidden`,
|
| 109 |
-
`present_required`, `decoy`, etc.).
|
| 110 |
-
6. `complete_gt.py` summary has no warnings and enough capability coverage for
|
| 111 |
-
the target hard cases.
|
| 112 |
-
7. SHA256 hashes for source, GT, prompts, and generation scripts are recorded in
|
| 113 |
-
`freeze_manifest.json`.
|
| 114 |
-
|
| 115 |
-
## Rebuild Commands
|
| 116 |
|
| 117 |
-
|
| 118 |
-
python3 benchmarks/VMem-Bench/assets/trackB/scripts/complete_gt.py --story 0001_lighthouse_keeper
|
| 119 |
-
python3 benchmarks/VMem-Bench/assets/trackB/scripts/get_sut_prompts.py --story 0001_lighthouse_keeper
|
| 120 |
-
```
|
| 121 |
|
| 122 |
-
|
| 123 |
-
|
|
|
|
|
|
|
| 124 |
|
| 125 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 126 |
|
| 127 |
-
|
| 128 |
-
same 64-character hash; any content change produces a different hash, so it is
|
| 129 |
-
useful for proving a frozen GT or prompt file did not silently change.
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
license: cc-by-4.0
|
| 3 |
+
pretty_name: VMem-Bench
|
| 4 |
---
|
| 5 |
|
| 6 |
+
# VMem-Bench (dataset)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
|
| 8 |
+
Textual gold and SUT prompts for [VMem-Bench](https://github.com/Suchenl/VMem-Bench). **No source videos.**
|
|
|
|
|
|
|
|
|
|
| 9 |
|
| 10 |
+
| Split | Contents |
|
| 11 |
+
|---|---|
|
| 12 |
+
| `trackA/` | Per-movie `gold/{entity_registry,chunk_annotations,chunk_index}.json` (Blender Open Movies + LSMDC titles) |
|
| 13 |
+
| `trackB/` | 50 long-horizon stories: `gt`, `gt_source`, `sut_prompts` (zh/en) + `freeze_manifest.json` |
|
| 14 |
|
| 15 |
+
- Code / scoring: https://github.com/Suchenl/VMem-Bench
|
| 16 |
+
- Method: https://github.com/Suchenl/MemStrata
|
| 17 |
+
- License of **these JSON files**: CC BY 4.0 (`LICENSE`)
|
| 18 |
+
- LSMDC **videos**: apply at the [LSMDC download page](https://sites.google.com/site/describingmovies/download), stitch to `LSMDC_Videos_Stitched/<movie_id>.mp4`; cite Rohrbach et al., IJCV 2017. Full steps: [VMem-Bench `docs/DATA.md`](https://github.com/Suchenl/VMem-Bench/blob/main/docs/DATA.md)
|
| 19 |
+
- Blender **videos**: official project pages / `scripts/prepare_blender.sh` for BBB; same `DATA.md`
|
| 20 |
|
| 21 |
+
See `trackA/README.md` and `trackB/README.md` in this dataset for file schemas.
|
|
|
|
|
|