Datasets:
Update README.md
Browse files
README.md
CHANGED
|
@@ -5,7 +5,6 @@ configs:
|
|
| 5 |
data_files:
|
| 6 |
- split: train
|
| 7 |
path: track/train-*
|
| 8 |
-
|
| 9 |
license: apache-2.0
|
| 10 |
task_categories:
|
| 11 |
- video-classification
|
|
@@ -13,25 +12,91 @@ task_categories:
|
|
| 13 |
tags:
|
| 14 |
- video-object-tracking
|
| 15 |
- video-segmentation
|
|
|
|
| 16 |
---
|
| 17 |
|
| 18 |
-
#
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 19 |
|
| 20 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 21 |
|
| 22 |
-
##
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 23 |
|
| 24 |
-
|
| 25 |
-
|
| 26 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 27 |
|
| 28 |
## Usage
|
|
|
|
| 29 |
```python
|
| 30 |
from datasets import load_dataset
|
| 31 |
|
| 32 |
-
#
|
| 33 |
ds = load_dataset("allenai/MolmoPoint-TrackSyn", split="train")
|
| 34 |
|
| 35 |
-
#
|
| 36 |
-
|
| 37 |
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
data_files:
|
| 6 |
- split: train
|
| 7 |
path: track/train-*
|
|
|
|
| 8 |
license: apache-2.0
|
| 9 |
task_categories:
|
| 10 |
- video-classification
|
|
|
|
| 12 |
tags:
|
| 13 |
- video-object-tracking
|
| 14 |
- video-segmentation
|
| 15 |
+
- synthetic
|
| 16 |
---
|
| 17 |
|
| 18 |
+
# MolmoPoint-TrackSyn Dataset
|
| 19 |
+
|
| 20 |
+
Synthetic point tracking annotations for procedurally generated videos generated with Blender.
|
| 21 |
+
|
| 22 |
+
Each example contains an expression describing an object, per-frame point trajectories, and video metadata. All videos are encoded as **6 FPS** and points are sampled at **2 FPS**.
|
| 23 |
+
|
| 24 |
+
## Dataset Statistics
|
| 25 |
+
|
| 26 |
+
| Split | Examples |
|
| 27 |
+
|-------|----------|
|
| 28 |
+
| train | _TBD_ |
|
| 29 |
+
|
| 30 |
+
## Schema
|
| 31 |
|
| 32 |
+
| Column | Type | Description |
|
| 33 |
+
|--------|------|-------------|
|
| 34 |
+
| `id` | `string` | Unique example identifier |
|
| 35 |
+
| `video` | `string` | Relative video path (without extension), e.g. `static-camera/{run_dir}/{video_file}`. We support static camera (`static-camera`) and dynamic camera (`dyna-camera`) setups. |
|
| 36 |
+
| `expression` | `string` | Natural-language description of the tracked object |
|
| 37 |
+
| `fps` | `int64` | Original video FPS |
|
| 38 |
+
| `sampling_fps` | `int64` | Sampling FPS used for annotation (always 2) |
|
| 39 |
+
| `height` | `int64` | Video height in pixels |
|
| 40 |
+
| `width` | `int64` | Video width in pixels |
|
| 41 |
+
| `n_frames` | `int64` | Number of frames in the sampled clip |
|
| 42 |
+
| `task` | `string` | Task type (always `"track"`) |
|
| 43 |
+
| `frame_trajectories` | `list[object]` | Per-frame point tracks (frame index, timestamp, point coords + occlusion) |
|
| 44 |
+
| `mask_id` | `list[string]` | Optional mask identifiers |
|
| 45 |
+
| `obj_id` | `list[int64]` | Optional object identifiers |
|
| 46 |
|
| 47 |
+
## Video Download
|
| 48 |
+
|
| 49 |
+
Videos are bundled in this repository as `synthetic_tracks.tar`.
|
| 50 |
+
|
| 51 |
+
### Automatic download
|
| 52 |
+
|
| 53 |
+
```python
|
| 54 |
+
from olmo.data.molmo2_video_track_datasets import MolmoPointTrackSyn
|
| 55 |
+
|
| 56 |
+
# Downloads the tar from HF, extracts, and verifies
|
| 57 |
+
MolmoPointTrackSyn.download()
|
| 58 |
+
```
|
| 59 |
|
| 60 |
+
### Manual download
|
| 61 |
+
|
| 62 |
+
```bash
|
| 63 |
+
# Download the tar from HuggingFace
|
| 64 |
+
huggingface-cli download allenai/MolmoPoint-TrackSyn synthetic_tracks.tar --repo-type dataset --local-dir ./MolmoPoint-TrackSyn
|
| 65 |
+
|
| 66 |
+
# Extract
|
| 67 |
+
tar -xf ./MolmoPoint-TrackSyn/synthetic_tracks.tar -C ./MolmoPoint-TrackSyn/
|
| 68 |
+
```
|
| 69 |
+
|
| 70 |
+
After extraction the directory structure is:
|
| 71 |
+
|
| 72 |
+
```
|
| 73 |
+
MolmoPoint-TrackSyn/
|
| 74 |
+
├── static-camera/
|
| 75 |
+
│ ├── {run_dir}/
|
| 76 |
+
│ │ ├── video.mp4
|
| 77 |
+
│ │ └── metadata.json
|
| 78 |
+
│ └── ...
|
| 79 |
+
└── dyna-camera/
|
| 80 |
+
├── {run_dir}/
|
| 81 |
+
│ ├── video.mp4
|
| 82 |
+
│ └── metadata.json
|
| 83 |
+
└── ...
|
| 84 |
+
```
|
| 85 |
+
|
| 86 |
+
The `video` column maps directly to the file path: `{VIDEO_HOME}/{video}/video.mp4
|
| 87 |
|
| 88 |
## Usage
|
| 89 |
+
|
| 90 |
```python
|
| 91 |
from datasets import load_dataset
|
| 92 |
|
| 93 |
+
# Load the dataset
|
| 94 |
ds = load_dataset("allenai/MolmoPoint-TrackSyn", split="train")
|
| 95 |
|
| 96 |
+
# Inspect an example
|
| 97 |
+
print(ds[0])
|
| 98 |
```
|
| 99 |
+
|
| 100 |
+
## Citation
|
| 101 |
+
|
| 102 |
+
If you use this dataset, please cite the MolmoPoint paper.
|