Update README.md
Browse files
README.md
CHANGED
|
@@ -23,9 +23,9 @@ size_categories:
|
|
| 23 |
|
| 24 |
Reasoning-Structured Videos is a UE5-rendered video benchmark whose trajectories are organised as **rooted graphs with path-level algebraic relations**. Unlike flat corpora that release independent action–observation rollouts, every released trajectory here is annotated as an exact instance of one of three identities a faithful transition operator must satisfy:
|
| 25 |
|
| 26 |
-
- **Inverse**
|
| 27 |
-
- **Loop**
|
| 28 |
-
- **Equivalence**
|
| 29 |
|
| 30 |
These are *across-path* properties invisible to any single-rollout metric (FVD, LPIPS, PSNR), and the dataset is, to our knowledge, the first video corpus that supplies them as constructed annotations rather than mining attempts. The accompanying analysis shows that random sampling cannot supply this signal: the density of algebraically meaningful pairs decays exponentially in path length, so the supervisory signal is **constructed by geometry** rather than discovered.
|
| 31 |
|
|
@@ -55,15 +55,15 @@ These are *across-path* properties invisible to any single-rollout metric (FVD,
|
|
| 55 |
|
| 56 |
For each scene, root states are sampled on a 200 cm XY grid with 8 yaw orientations per cell and filtered by capsule-overlap tests against scene geometry. From every valid root, trajectories are emitted by one of three constructive families so the algebraic identity holds **exactly on the captured frames**, absent collision:
|
| 57 |
|
| 58 |
-
- **Inverse paths.** A natural
|
| 59 |
- **Loop paths.** Two complementary constructions: (i) sampled exploration plus a five-stage discrete return (yaw → pitch → forward/backward → lateral) accepted only when residuals fall below 0.45 Δ horizontal / 0.3 Δ vertical; (ii) **topologically closed polygons** (rectangle / triangle / hexagon) whose closure is exact by polygon geometry.
|
| 60 |
-
- **Equivalent paths.** Stage 1 — Fisher–Yates shuffle within each maximal mono-type segment of consecutive translations or consecutive rotations (commutative shuffle); Stage 2 fallback — matched **L-shape**
|
| 61 |
|
| 62 |
A two-layer pixel-level validator certifies that every released relation holds to MSE tolerance on the captured frames; trajectories whose realised pose deviates from the expected pose by > 1 cm at any step are routed to a held-out **`random_walk/`** split and excluded from consistency-metric evaluation.
|
| 63 |
|
| 64 |
### Deterministic capture pipeline
|
| 65 |
|
| 66 |
-
To make the rendering function
|
| 67 |
|
| 68 |
- frozen directional lighting, HDR capture path, clamped auto-exposure;
|
| 69 |
- 15 warm-up frames discarded after every teleport (Lumen GI / auto-exposure settling);
|
|
@@ -92,7 +92,7 @@ reasoning-structured-videos/
|
|
| 92 |
└── filter_summary.json # per-type counts and Layer-2 MSE statistics
|
| 93 |
```
|
| 94 |
|
| 95 |
-
Each `_meta.json` records `trajectory_type`, `paired_trajectory` (for Equivalence's
|
| 96 |
|
| 97 |
---
|
| 98 |
|
|
@@ -101,7 +101,7 @@ Each `_meta.json` records `trajectory_type`, `paired_trajectory` (for Equivalenc
|
|
| 101 |
The dataset ships with a two-tier protocol that any action-conditioned generator can be plugged into via a `rollout(context, actions) -> frames` interface — no retraining required.
|
| 102 |
|
| 103 |
- **GT-anchored tier.** Pixel-level (LPIPS, PSNR) and distributional (FVD) comparison between the model's rollout and the released ground-truth video at the annotated endpoint pair. Primary tier when the model's action interface matches the 100 cm / 15° grid.
|
| 104 |
-
- **Self-consistency tier.** `Inv-SC`, `Loop-SC`, `Equiv-SC` compare two rollouts of the **same** model to each other (start vs. end of
|
| 105 |
|
| 106 |
The two tiers answer complementary questions — *does the rollout match reality* vs. *is the model internally coherent under composition* — and their joint movement is itself diagnostic.
|
| 107 |
|
|
@@ -141,7 +141,7 @@ sample = inv[0]
|
|
| 141 |
# sample["root_state"]: {position: [x,y,z], rotation: [pitch,yaw,roll]}
|
| 142 |
```
|
| 143 |
|
| 144 |
-
Equivalence pairs are linked by `paired_trajectory_id`; iterating over the split with grouping on this field yields the
|
| 145 |
|
| 146 |
---
|
| 147 |
|
|
|
|
| 23 |
|
| 24 |
Reasoning-Structured Videos is a UE5-rendered video benchmark whose trajectories are organised as **rooted graphs with path-level algebraic relations**. Unlike flat corpora that release independent action–observation rollouts, every released trajectory here is annotated as an exact instance of one of three identities a faithful transition operator must satisfy:
|
| 25 |
|
| 26 |
+
- **Inverse** `T_{A⁻¹} ∘ T_A(s₀) = s₀` — a path followed by its reverse returns to the start.
|
| 27 |
+
- **Loop** `T_A(s₀) = s₀` — a topologically closed action sequence closes in state space.
|
| 28 |
+
- **Equivalence** `T_A(s₀) = T_B(s₀), A ≠ B` — two distinct sequences reach the same state.
|
| 29 |
|
| 30 |
These are *across-path* properties invisible to any single-rollout metric (FVD, LPIPS, PSNR), and the dataset is, to our knowledge, the first video corpus that supplies them as constructed annotations rather than mining attempts. The accompanying analysis shows that random sampling cannot supply this signal: the density of algebraically meaningful pairs decays exponentially in path length, so the supervisory signal is **constructed by geometry** rather than discovered.
|
| 31 |
|
|
|
|
| 55 |
|
| 56 |
For each scene, root states are sampled on a 200 cm XY grid with 8 yaw orientations per cell and filtered by capsule-overlap tests against scene geometry. From every valid root, trajectories are emitted by one of three constructive families so the algebraic identity holds **exactly on the captured frames**, absent collision:
|
| 57 |
|
| 58 |
+
- **Inverse paths.** A natural `K`-step path `A` (`K ∈ {10, …, 20}`) interleaves translation blocks and rotation blocks, then is concatenated with its action-wise reverse `A⁻¹` and `no_op`-padded to the fixed horizon. Translations and rotations do not commute, so reversal demands tracking of the non-abelian sequence.
|
| 59 |
- **Loop paths.** Two complementary constructions: (i) sampled exploration plus a five-stage discrete return (yaw → pitch → forward/backward → lateral) accepted only when residuals fall below 0.45 Δ horizontal / 0.3 Δ vertical; (ii) **topologically closed polygons** (rectangle / triangle / hexagon) whose closure is exact by polygon geometry.
|
| 60 |
+
- **Equivalent paths.** Stage 1 — Fisher–Yates shuffle within each maximal mono-type segment of consecutive translations or consecutive rotations (commutative shuffle); Stage 2 fallback — matched **L-shape** `Uᵐ Vⁿ` vs. **zig-zag** `(UV)ᵏ Uᵐ⁻ᵏ Vⁿ⁻ᵏ` pairs (`m, n ∈ [3, 6]`) with self-inverse rotation pairs filling remaining slots, sharing only origin and terminus with disjoint interiors.
|
| 61 |
|
| 62 |
A two-layer pixel-level validator certifies that every released relation holds to MSE tolerance on the captured frames; trajectories whose realised pose deviates from the expected pose by > 1 cm at any step are routed to a held-out **`random_walk/`** split and excluded from consistency-metric evaluation.
|
| 63 |
|
| 64 |
### Deterministic capture pipeline
|
| 65 |
|
| 66 |
+
To make the rendering function `g: S → X` effectively deterministic — required for any cross-path pixel comparison to be attributable to the model rather than to scene drift — the renderer applies:
|
| 67 |
|
| 68 |
- frozen directional lighting, HDR capture path, clamped auto-exposure;
|
| 69 |
- 15 warm-up frames discarded after every teleport (Lumen GI / auto-exposure settling);
|
|
|
|
| 92 |
└── filter_summary.json # per-type counts and Layer-2 MSE statistics
|
| 93 |
```
|
| 94 |
|
| 95 |
+
Each `_meta.json` records `trajectory_type`, `paired_trajectory` (for Equivalence's `(A, B)` pairs), the full `action_sequence`, the `root_state`, `collision_mask`, render configuration, and the algebraic identity asserted by the trajectory.
|
| 96 |
|
| 97 |
---
|
| 98 |
|
|
|
|
| 101 |
The dataset ships with a two-tier protocol that any action-conditioned generator can be plugged into via a `rollout(context, actions) -> frames` interface — no retraining required.
|
| 102 |
|
| 103 |
- **GT-anchored tier.** Pixel-level (LPIPS, PSNR) and distributional (FVD) comparison between the model's rollout and the released ground-truth video at the annotated endpoint pair. Primary tier when the model's action interface matches the 100 cm / 15° grid.
|
| 104 |
+
- **Self-consistency tier.** `Inv-SC`, `Loop-SC`, `Equiv-SC` compare two rollouts of the **same** model to each other (start vs. end of `A ‖ A⁻¹`; endpoints of equivalent `A`, `B`). SC is **invariant to any uniform reparameterisation of the action space** and is therefore well-defined across frameworks with heterogeneous action interfaces (continuous keyboard-mouse vectors, dual categorical indices, pose deltas, etc.).
|
| 105 |
|
| 106 |
The two tiers answer complementary questions — *does the rollout match reality* vs. *is the model internally coherent under composition* — and their joint movement is itself diagnostic.
|
| 107 |
|
|
|
|
| 141 |
# sample["root_state"]: {position: [x,y,z], rotation: [pitch,yaw,roll]}
|
| 142 |
```
|
| 143 |
|
| 144 |
+
Equivalence pairs are linked by `paired_trajectory_id`; iterating over the split with grouping on this field yields the `(A, B)` pairs directly.
|
| 145 |
|
| 146 |
---
|
| 147 |
|