--- license: cc-by-nc-sa-4.0 task_categories: - image-to-image tags: - optical-flow - motion-estimation pretty_name: DinoFlow size_categories: - 100K 0 # bool (H, W) ``` ## Composition | source | pairs | domain | flow | |---|---:|---|---| | FlyingThings3D_subset | 39,282 | objects in 3D scenes (synthetic) | dense | | FlyingChairs | 22,232 | chairs over backgrounds (synthetic) | dense | | **total** | **61,514** | | | ## Harmonization Every source is decoded to **dense flow `(u, v)` in pixels** (frame1 → frame2), stored as compact little-endian **float16** (near-lossless for magnitudes < ~1000 px). The synthetic flow is dense; pixels with `|u|` or `|v|` ≥ 1000 px are marked invalid in `valid` (the FlowNet/RAFT convention). Frames are stored losslessly as PNG at native resolution; resize/crop happens in the training loader. ## Splits - **`train`** — the full 61,514-pair corpus, globally shuffled into 121 shards (~1 GB each, small row groups + page index for fast random access). > The `train` split is the full **FlowNet/RAFT C→T** training corpus: **FlyingChairs** (the *C* > stage) and **FlyingThings3D_subset** (the *T* stage), decoded to one flow convention and globally > shuffled together, so any shard mixes both sources. ## Evaluation (held-out) Standard optical-flow benchmarks, kept **out of training** and shipped as separate configs. Report **EPE** (mean end-point error over valid pixels) and, on KITTI, **Fl-all** (outlier rate): | config | benchmark | notes | |---|---|---| | `sintel-clean` | MPI-Sintel (clean) | movie-grade synthetic; dense flow; clean render pass | | `sintel-final` | MPI-Sintel (final) | as clean, with motion blur + atmospherics | | `kitti2015` | KITTI-2015 flow | driving; 200 pairs; sparse LiDAR-derived flow + valid mask | ```python ev = load_dataset("blanchon/dinoflow-dataset", name="sintel-clean", split="test") ``` ## License Released for **non-commercial research** under **CC BY-NC-SA 4.0**. Each source retains its original license — respect the original terms of each source (FlyingChairs / FlyingThings3D per their upstream LMB terms; MPI-Sintel and KITTI-2015 per their respective terms). --- Recipe mirrors DinoDepth / AnyDepth (arXiv:2601.02760), for optical flow.