video video 9.03 20 |
|---|
Exylos Pick-and-Place Sample
A human-in-the-loop, multi-view robot manipulation dataset captured through consumer VR and procedurally expanded with visual domain randomization into transfer-oriented pick-and-place episodes. Delivered in a LeRobot-compatible structure.
Visualize episodes interactively
Open this dataset in the official LeRobot Dataset Visualizer to browse individual episodes, inspect camera streams, and view trajectories in your browser:
Why this dataset is different
Most public manipulation datasets come from one of two sources: real-robot teleoperation farms, which are slow and expensive, or pure simulation, which is cheap but often weak for transfer. This sample comes from a third path:
- Human-in-the-loop VR capture. A human performs the task in an immersive virtual environment using a standard VR headset. Their motion provides task intent, manipulation timing, and correction behavior, while the system retargets the demonstration onto a virtual Franka Panda robot embodiment.
- Procedurally expanded with visual domain randomization. Seed demonstrations are expanded into physics-consistent variations with changing object poses, distractors, mild occlusions, lighting conditions, camera configurations, object materials, and environment appearance.
- Packaged for direct inspection and training. The output is delivered in a LeRobot-compatible structure, with synchronized multi-view video, state and action streams, phase-level annotations, quality scores, and success/failure metadata.
The result is human-seeded, scaled, and labeled robot-manipulation data that is closer to what policy training needs, without requiring every trajectory to be collected on a physical robot.
This public release is intentionally compact. It is meant as an inspection sample: robotics teams can evaluate the format, modalities, visual variation, annotation schema, and trajectory quality before discussing larger productized skill packs.
Dataset summary
| Property | Value |
|---|---|
| Episodes | 50 |
| Total frames | 21,412 |
| Task | Pick up an object from the workspace and place it into a container |
| Robot embodiment | Franka Emika Panda, 7-DoF arm + parallel gripper |
| Camera views | 5 synchronized RGB streams |
| Video | 30 FPS, H.264, 1280 x 960 |
| Robot state | 9-dimensional |
| Action vector | 9-dimensional |
| Trajectories | Synchronized robot state + action streams per frame |
| Outcome mix | 30 success episodes, 20 failure episodes |
| Failure reasons | 6 slip/drop failures, 14 operator-abort failures |
| Correction coverage | 16 episodes include correction phases or nonzero correction counts |
| Phase-level annotations | approach, grasp, transport, place, retract, correction |
| Episode-level metadata | success/failure outcome, failure reason, duration, frozen-frame count, quality scores, derived metrics |
| Visual variation | Object pose, distractors, mild occlusions, lighting, camera configuration, object material, and environment appearance variation |
| Format | LeRobot-compatible Parquet + MP4 |
| License | Apache 2.0 |
What is included
Each episode bundles synchronized robot, video, and annotation signals:
- Robot state trajectories: the full 9D robot state stream over time.
- Action trajectories: the 9D control/action signal at each frame.
- Multi-view RGB video: five synchronized camera streams: wrist, front, left, top, and right.
- Per-frame indexing: timestamp, frame index, episode index, global index, task index, terminal state, and terminal success flag.
- Episode-level metadata: task identity, success/failure outcome, failure reason, duration, frozen-frame count, quality scores, and derived execution metrics.
- Phase-level annotations: frame-range segment boundaries for approach, grasp, transport, place, retract, and correction phases.
- Correction and failure semantics: selected episodes include wrong-object, slip/drop, placement-error, retry, and correction/recovery signals in annotations and metrics.
Camera views
observation.images.wrist_cam
observation.images.front_cam
observation.images.left_cam
observation.images.top_cam
observation.images.right_cam
Core trajectory fields
observation.state
action
timestamp
frame_index
episode_index
index
task_index
next.done
next.success
Annotation fields
episode_id
success
task_success
failure_reason
duration_sec
frozen_frames
phase_annotations
scores
derived
raw_measurements
scorer_id
The phase_annotations field contains phase names, frame ranges, execution quality, and task-alignment labels. The scores, derived, and raw_measurements fields provide quality and diagnostic metrics such as path efficiency, grasp precision, placement accuracy, temporal efficiency, motion smoothness, corrective movement score, correction count, correction duration, discontinuity count, and kinematic headroom.
Quick start
The dataset follows LeRobot dataset conventions and can be loaded with the lerobot library:
from lerobot.datasets.lerobot_dataset import LeRobotDataset
dataset = LeRobotDataset("ExylosAi/pick_and_place_sample")
# Inspect the first frame of the first episode
sample = dataset[0]
print(sample.keys())
print(sample["observation.state"].shape)
print(sample["action"].shape)
You can also browse the raw Parquet and MP4 files directly under the Files tab.
Repository structure
README.md
LICENSE_1.txt
info.json
annotations.json
tasks.jsonl
episodes.jsonl
episodes_stats.jsonl
preview.mp4
preview.gif
data/
chunk-000/
episode_000000.parquet
episode_000001.parquet
...
videos/
chunk-000/
observation.images.wrist_cam/
episode_000000.mp4
episode_000001.mp4
...
observation.images.front_cam/
episode_000000.mp4
episode_000001.mp4
...
observation.images.left_cam/
...
observation.images.top_cam/
...
observation.images.right_cam/
...
Intended use
This sample is suitable for:
- Inspecting the Exylos data format and annotation schema.
- Testing LeRobot-compatible training and data-loading pipelines.
- Quick imitation-learning experiments on a narrow pick-and-place task.
- Evaluating synchronized multi-view RGB, state/action trajectories, and phase-level annotations.
- Inspecting visual domain randomization and procedural variation in a compact manipulation sample.
- Reviewing success, failure, slip/drop, operator-abort, and correction/recovery examples.
For larger production-scale skill packs, including broader object families, configurable embodiments, denser masks, custom evaluation logic, or higher episode volumes, visit exylos.ai or contact us directly.
Out-of-scope
- This sample does not target a specific real-world deployment cell or production line.
- It does not include dense per-frame semantic or instance masks.
- It does not include a held-out benchmark split tuned for leaderboard-style evaluation.
- It does not provide dense per-frame 6DoF object pose labels as a standalone object-state stream.
About Exylos
Exylos is an early-stage robotics data company. We capture human manipulation demonstrations in consumer VR and procedurally expand them into physics-consistent, transfer-oriented training episodes with visual domain randomization. Datasets are delivered in LeRobot-compatible structure or adapted to client pipelines.
If you are a robotics or applied-ML team and want to discuss a custom skill pack for your embodiment and task, reach out at contact@exylos.ai or visit exylos.ai.
Citation
If you use this dataset in research or in a public technical report, please cite it as:
@misc{exylos_picknplace_sample_2026,
title = {Exylos Pick-and-Place Sample: A Multi-View, VR-Captured Manipulation Dataset},
author = {Exylos},
year = {2026},
howpublished = {\url{https://huggingface.co/datasets/ExylosAi/pick_and_place_sample}},
note = {LeRobot-compatible dataset}
}
License
Released under the Apache License 2.0. This sample is intentionally permissive so robotics and ML teams can inspect, load, test, and commercially evaluate the format without licensing friction. You are free to use this dataset for both research and commercial purposes, subject to the standard Apache 2.0 attribution requirements. See LICENSE_1.txt in this repository for full terms.
Contact
- Website: exylos.ai
- Email: contact@exylos.ai
- LinkedIn: Exylos on LinkedIn
For questions specific to this dataset, including format, schema, or fields, please open a discussion in the Community tab on this repository.
- Downloads last month
- 404