File size: 844 Bytes
bee2b50
 
2f21ecd
 
 
 
 
 
 
 
 
 
 
cd714f6
 
2f21ecd
 
cd714f6
2f21ecd
 
bee2b50
cd714f6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
---
configs:
  - config_name: track
    default: true
    data_files:
      - split: train
        path: track/train-*

  - config_name: ground
    data_files:
      - split: train
        path: ground/train-*

license: apache-2.0
task_categories:
  - video-classification
  - object-detection
tags:
  - video-object-tracking
  - video-segmentation
---

# moca Tracking Dataset

Video object tracking annotations for moca.

## Configs

| Config | Description | Splits |
|--------|-------------|--------|
| `track` (default) | Track points across all frames | train |
| `ground` | First and last appearance of points | train |

## Usage
```python
from datasets import load_dataset

# Default (track)
ds = load_dataset("allenai/molmo2-moca", split="train")

# Specific config
ds = load_dataset("allenai/molmo2-moca", "ground", split="train")
```