Datasets:
video video |
|---|
Dual-Arm VR Manipulation Video Dataset
A VideoFolder-format dataset of first-person (egocentric) dual-hand manipulation clips captured with a VR headset, covering everyday bimanual tasks — handling a box, carrying a tray, picking items into a cart, switching on a lamp, folding a shirt, stacking blocks, capping a marker, loading a dishwasher, inserting pens, and placing fruit onto a tray. Provided by Thordata. Each clip is annotated with a temporal action breakdown, per-segment descriptions, an English caption, and technical metadata.
Layout (HuggingFace VideoFolder)
data/
├── metadata.jsonl # one row per video; "file_name" links to the clip
└── train/
├── clip_01.mp4
└── ... clip_10.mp4
Load
from datasets import load_dataset
ds = load_dataset("videofolder", "<your-username>/vr-manipulation")
print(ds["train"][0]["caption"])
print(ds["train"][0]["json"]["action_labels"])
Fields
| Field | Type | Description |
|---|---|---|
file_name |
string | Relative path to the video file |
id |
string | Clip identifier |
provider |
string | Data provider (Thordata) |
title |
string | Short English title |
caption |
string | One-sentence English description |
style |
string | Task category (manipulation / carrying / pick-and-place / folding / stacking / loading) |
setting |
string | Scene / environment |
hands |
string | How the two hands act |
action_labels |
list<string> | Coarse action tags for classification |
segments |
list<dict> | Temporal breakdown: start, end (seconds), action, description |
duration_s |
float | Duration (seconds) |
width, height |
int | Resolution |
fps |
float | Frames per second |
num_frames_est |
int | Estimated frame count |
Coverage (10 clips)
Handling a small box, carrying a food tray through a kitchen, picking snacks into a cart, turning on a desk lamp, folding a plaid shirt, stacking wooden blocks, capping a marker and returning it, loading dishes into a dishwasher, inserting pens into a holder, placing fruit onto a tray.
Citation
@misc{vr_manipulation,
title = {Dual-Arm VR Manipulation Video Dataset},
author = {Thordata},
year = {2026}
}
- Downloads last month
- 102