Datasets:
Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -1,56 +1,37 @@
|
|
| 1 |
---
|
| 2 |
-
dataset_info:
|
| 3 |
-
config_name: track
|
| 4 |
-
features:
|
| 5 |
-
- name: id
|
| 6 |
-
dtype: string
|
| 7 |
-
- name: video
|
| 8 |
-
dtype: string
|
| 9 |
-
- name: expression
|
| 10 |
-
dtype: string
|
| 11 |
-
- name: fps
|
| 12 |
-
dtype: int64
|
| 13 |
-
- name: sampling_fps
|
| 14 |
-
dtype: int64
|
| 15 |
-
- name: height
|
| 16 |
-
dtype: int64
|
| 17 |
-
- name: n_frames
|
| 18 |
-
dtype: int64
|
| 19 |
-
- name: width
|
| 20 |
-
dtype: int64
|
| 21 |
-
- name: task
|
| 22 |
-
dtype: string
|
| 23 |
-
- name: frame_trajectories
|
| 24 |
-
list:
|
| 25 |
-
- name: frame
|
| 26 |
-
dtype: int64
|
| 27 |
-
- name: time
|
| 28 |
-
dtype: float64
|
| 29 |
-
- name: points
|
| 30 |
-
list:
|
| 31 |
-
- name: id
|
| 32 |
-
dtype: int64
|
| 33 |
-
- name: point
|
| 34 |
-
list: float64
|
| 35 |
-
- name: occluded
|
| 36 |
-
dtype: bool
|
| 37 |
-
- name: mask_id
|
| 38 |
-
list: string
|
| 39 |
-
- name: obj_id
|
| 40 |
-
list: int64
|
| 41 |
-
- name: qid
|
| 42 |
-
dtype: string
|
| 43 |
-
- name: anno_id
|
| 44 |
-
list: string
|
| 45 |
-
splits:
|
| 46 |
-
- name: train
|
| 47 |
-
num_bytes: 742312596
|
| 48 |
-
num_examples: 76165
|
| 49 |
-
download_size: 63898665
|
| 50 |
-
dataset_size: 742312596
|
| 51 |
configs:
|
| 52 |
-
- config_name: track
|
| 53 |
-
|
| 54 |
-
|
| 55 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 56 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
configs:
|
| 3 |
+
- config_name: track
|
| 4 |
+
default: true
|
| 5 |
+
data_files:
|
| 6 |
+
- split: train
|
| 7 |
+
path: track/train-*
|
| 8 |
+
|
| 9 |
+
license: apache-2.0
|
| 10 |
+
task_categories:
|
| 11 |
+
- video-classification
|
| 12 |
+
- object-detection
|
| 13 |
+
tags:
|
| 14 |
+
- video-object-tracking
|
| 15 |
+
- video-segmentation
|
| 16 |
---
|
| 17 |
+
|
| 18 |
+
# molmopoint-tracksyn Tracking Dataset
|
| 19 |
+
|
| 20 |
+
Video object tracking annotations for molmopoint-tracksyn.
|
| 21 |
+
|
| 22 |
+
## Configs
|
| 23 |
+
|
| 24 |
+
| Config | Description | Splits |
|
| 25 |
+
|--------|-------------|--------|
|
| 26 |
+
| `track` (default) | Track points across all frames | train |
|
| 27 |
+
|
| 28 |
+
## Usage
|
| 29 |
+
```python
|
| 30 |
+
from datasets import load_dataset
|
| 31 |
+
|
| 32 |
+
# Default (track)
|
| 33 |
+
ds = load_dataset("allenai/MolmoPoint-TrackSyn", split="train")
|
| 34 |
+
|
| 35 |
+
# Specific config
|
| 36 |
+
ds = load_dataset("allenai/MolmoPoint-TrackSyn", "ground", split="train")
|
| 37 |
+
```
|