Request access to the EXYLOS 20-hour VR dataset

Requests are reviewed manually by EXYLOS.

Please describe your intended use. Approval to access the files does not grant commercial use, redistribution, or other rights beyond the dataset's license and access terms below.

Log in or Sign Up to review the conditions and access this dataset content.

Egocentric VR Capture — 20-Hour Multimodal Inspection Sample

195 real-world task episodes / 2,283,482 frames / 21.14 delivered hours captured with Meta Quest 3. Each episode combines egocentric RGB and audio with synchronized headset, camera, body, and hand tracking in a LeRobot v3-style package.

This publicly listed, access-controlled 20-hour-scale dataset is produced by the EXYLOS real-world data pipeline. Requests for file access are reviewed manually. It demonstrates multi-operator task coverage, capture structure, synchronization, hierarchical temporal annotations, calibration, and pose provenance before a larger commercial delivery.

Use it / Skip it

Use it for

  • Evaluating real-world egocentric Meta Quest 3 capture at multi-hour scale.
  • Inspecting synchronized video, audio, head, body, and hand tracking.
  • Testing human-motion preprocessing, tracking masks, temporal annotations, retargeting, and ingestion.
  • Reviewing EXYLOS delivery structure, task coverage, and QA evidence.

Skip it if you need

  • Robot actions, torques, force, tactile, or contact measurements.
  • Depth, segmentation, or object-pose ground truth.
  • Outcome, success/failure, reward labels, or a declared closed action ontology.
  • Externally validated mocap accuracy or a clean benchmark without additional pose filtering.

This is human XR capture, not robot execution data. The frame data contains no robot-control action feature or robot-control signal.

At a glance

Episodes / frames 195 / 2,283,482
Duration 76,116.07 seconds, approximately 21 hours 9 minutes
Tasks / operators 43 distinct tasks / 6 pseudonymous operators
Coverage 110 household, 74 food-prep, 11 vehicle-care episodes
Environments Kitchen, laundry room, room, bathroom, cafe, garage, residential, dining room
Capture Meta Quest 3, 30 Hz
RGB 1 egocentric 1280 x 960 H.264 stream with audio
Physical video files 189; some files contain multiple episode intervals
Audio AAC, 48 kHz, dual-mono
State 390-D float32 head, camera, body, and hand tracking
Annotations 195 episode captions, 12,399 temporal actions, 23,244 body-part sub-actions
Format LeRobot v3-style Parquet + MP4 + JSON metadata
Repository size Approximately 97.22 GB
Split / license Train only / proprietary

Verify the core numbers

import json
from huggingface_hub import hf_hub_download

repo = "ExylosAi/egocentric-vr-capture-20h-multimodal-sample"
path = hf_hub_download(repo, "meta/info.json", repo_type="dataset", token=True)
info = json.load(open(path, encoding="utf-8"))
print(info["robot_type"], info["fps"], info["total_episodes"], info["total_frames"])
# -> meta_quest 30 195 2283482

Load it

Coordinate convention: all poses in observation.state are expressed in the ROS 2 REP-103 convention — a right-handed, Z-up world with +X forward, +Y left, +Z up; positions in meters, quaternions ordered (x, y, z, w). headset and head_camera are body frames (x forward, y left, z up). The camera optical frame (x right, y down, z forward, the frame the intrinsics are calibrated in) is reached from the head_camera body frame by the fixed rotation published as body_to_optical in meta/calibration.json, alongside T_head_camera (camera body frame in the headset frame) and the pinhole intrinsics. A map → headset → head_camera → head_camera_optical TF tree built from these values, with a sensor_msgs/CameraInfo from the intrinsics, projects the hand joints onto the published video. supplemental/pose_contract.jsoncoordinate_frame records the convention and the exact basis change from the headset's native left-handed Y-up frame, which is lossless and invertible.

Viewer provenance: the default viewer_data/ mirror is rebuilt from the canonical frame Parquet in revision 5930e212f981b5d3c335d83ee5e36109c04e336b. It preserves the canonical pose values and adds only task, environment, video-path, video-timestamp, and episode-duration columns. The episodes, videos, annotations_l2, and annotations_l3 configs use the same unchanged metadata, media references, and annotations.

Stream the frame-level Viewer mirror without downloading the full table:

from datasets import load_dataset

repo = "ExylosAi/egocentric-vr-capture-20h-multimodal-sample"
frames = load_dataset(repo, split="train", token=True, streaming=True)
first = next(iter(frames))
print(len(first["observation.state"]))  # 390

Load the episode index and video rows:

episodes = load_dataset(repo, "episodes", split="train", token=True)
videos = load_dataset(repo, "videos", split="train", token=True)
print(episodes.num_rows, videos.num_rows)  # 195 195

The videos config is episode-oriented. When several episodes share one physical MP4, use clip_start_s and clip_end_s to resolve the delivered episode interval.

Load temporal action and body-part annotation tables:

level2 = load_dataset(repo, "annotations_l2", split="train", token=True)
level3 = load_dataset(repo, "annotations_l3", split="train", token=True)
print(level2.num_rows, level3.num_rows)  # 12399 23244

Download canonical Parquet and metadata without the video payloads:

from pathlib import Path
from huggingface_hub import snapshot_download
import pyarrow.dataset as ds

root = Path(snapshot_download(
    repo, repo_type="dataset", token=True,
    allow_patterns=["data/**/*.parquet", "meta/**", "supplemental/**"],
))
frames = ds.dataset(root / "data", format="parquet")

What you get

  • RGB + audio: one head-mounted stream, with 189 physical MP4 files covering 195 episode intervals.
  • Head: headset and head-camera position plus quaternion.
  • Body: positions, rotations, and binary validity for 26 joints.
  • Hands: 21 joint positions per hand plus visibility flags.
  • Provenance: video PTS, video-frame index, and native pose-frame index.
  • Metadata: task, family, environment, pseudonymous operator, and per-episode camera calibration (pinhole intrinsics, T_head_camera, body_to_optical).
  • Annotations: episode captions plus timestamped action and body-part sub-action spans.
  • Pose disclosure: sensing provenance, coordinate conventions, generated lower-body status, and validation limitations.
390-D state breakdown
Signal Dimensions
Headset + head-camera poses 14
26 body positions 78
26 body quaternions 104
26 body-validity flags 26
Two 21-joint hand positions 126
Two sets of hand-visibility flags 42
Total 390

Body confidence is binary, not calibrated. Upper-body and hand joints are camera-based estimates. Lower-body joints are generated rather than directly sensed.

Task coverage
Task Episodes
Check and adjust tire pressure 2
Check engine oil level 2
Clean a bathroom mirror 6
Clean a bathtub or shower 4
Clean a sink and faucet 7
Clean a toilet 3
Clean a vehicle 5
Clean the windshield and mirrors 1
Cook eggs 1
Cook food in a pot 4
Cook food in an oven 1
Cook ingredients in a pan 1
Cut food ingredients 14
Fold clean laundry 9
Heat a meal in a microwave 2
Iron clean laundry 9
Load a dishwasher 4
Load a washing machine 7
Make a bed 10
Make a sandwich 4
Mix batter in a bowl 5
Mop a hard floor 1
Organize items in the trunk 1
Pack a meal into a food container 4
Peel a fruit or vegetable 6
Prepare a hot drink 11
Prepare a salad 6
Put clean clothes away 7
Put groceries away 4
Put items away in a cabinet or drawer 3
Put toys away 3
Serve food onto a plate 1
Set a dining table 1
Sort laundry before washing 2
Sweep a hard floor 3
Take out trash and replace the bin liner 2
Transfer leftovers into storage containers 1
Unload a dishwasher 2
Unload a washing machine 4
Vacuum a floor 3
Wash dishes by hand 11
Wash fruits or vegetables 13
Wipe a kitchen countertop 5

Temporal annotations

supplemental/annotations.json provides a three-level timeline for every episode. All timestamps are relative to the start of the delivered episode interval.

Level Count Contents
Level 1 195 One English caption describing each episode goal
Level 2 12,399 Temporal action spans with start/end time and an action label
Level 3 23,244 Body-part-specific sub-actions nested inside Level 2 spans

Tracking and QA

All poses share one static REP-103 world frame (right-handed, +X forward, +Y left, +Z up); positions are meters and quaternions use (x, y, z, w). Native poses are mapped to the 30 Hz video grid, and source indices remain available for synchronization checks. Audio, video, and pose share one capture clock.

Structural validation passed for all 195 episode IDs, data/video references, frame counts, annotation IDs, and Level 3 parent containment. The delivered frame total exactly matches the episode index. Aggregate state statistics contain no NaN or infinite values, and body-confidence and hand-visibility fields stay in the declared [0, 1] range.

File layout

meta/                info, calibration, tasks, episode metadata and stats
supplemental/        annotations, delivery metadata and pose contract
data/                canonical synchronized frame Parquet
videos/              189 canonical head-RGB MP4 files
viewer_data/         enriched 2,283,482-row post-repair Viewer mirror
viewer_index/        195-row episode index
viewer_videos/       195-row episode-oriented video config
viewer_annotations/  flattened Level 2 and Level 3 annotation tables

Scaling up

This repository is a 20-hour-scale sample. Larger commercial deliveries can add hours, operators, tasks, environments, modalities, customer-specific annotations, QA thresholds, retargeting, and alternative schemas. Volume, rights, acceptance criteria, and supported modalities are scoped separately.

Notes and limitations

  • 195 episodes and six pseudonymous operators across 43 tasks.
  • One egocentric RGB view; no depth, segmentation, object state, force, torque, or tactile streams.
  • Temporal Level 2 and Level 3 spans are descriptive natural-language annotations; no outcome, reward, or success/failure labels are included.
  • Body and hands are estimated; lower-body pose is generated.
  • Absolute translation, rotation, drift, and retargeting accuracy were not measured against external ground truth.
  • The world origin is the headset's tracking origin, with z = 0 at the headset's floor estimate; that estimate can differ from the physical floor (e.g. outdoors), so subtract the episode's median foot-joint height where floor-referenced z is needed. See pose_contract.jsonworld_origin.
  • Camera calibration varies across episodes; lens-distortion coefficients are absent.
  • Not a benchmark and not sufficient by itself for robot-transfer or model-performance claims.
  • Real-world video and audio must stay within the authorized access boundary.

License and access

This dataset is publicly listed but its files require individual access approval. It is proprietary. Approval to access the files does not grant rights to redistribute, publish extracts, train commercial models, create derivative datasets, sublicense, or deploy commercially. Permitted uses require a separate written agreement with EXYLOS.

Citation

If required by the governing agreement, cite the repository and the exact snapshot revision used.

Downloads last month
329