ROBOTIC.INDUSTRIES

AI and Robot Learning

Open Robot Datasets Compared: Size, Embodiments, Licence

Which open robot learning datasets are worth using, what they actually contain, and the three properties that decide whether a dataset helps your robot at all.

Operator in a virtual reality headset guiding a robot arm across a workbench
Operator in a virtual reality headset guiding a robot arm across a workbench

Check three properties before anything else: the action space, the observation setup and the licence. A dataset recorded in joint space on a different arm cannot transfer to yours, a single-camera dataset will not train a policy that needs a wrist view, and a research-only licence blocks commercial use however good the data is. Size matters least of the four.

3properties that decide usefulness
1 M+trajectories in the largest pooled collection
20+robot embodiments it spans
1action space that transfers, end effector

The three checks, in order

What to verify before downloading anything
PropertyWhat to look forWhy it disqualifies
Action spaceEnd effector deltas, ideally with gripper stateJoint angles are specific to one kinematic chain
Observation setupNumber of views, resolution, whether a wrist camera existsA policy cannot learn from a view it never had
LicenceCommercial use, redistribution, attributionResearch-only data cannot ship in a product
Control rateStated, and consistent across episodesMixed rates need resampling and introduce error
Failure contentWhether failed and recovery episodes are includedClean-only data produces policies that cannot recover
Metadata qualityRobot, gripper, operator, date, task labelWithout it, diagnosing a performance drop is guesswork
End effector space is the interoperability decision. A dataset that records the pose delta of the tool transfers to any robot that can execute that motion. A dataset that records joint angles is tied to the arm that produced it. This single choice explains why pooled multi-robot collections settled on the former.

The landscape

Open robot data falls into four groups, and they serve different purposes.

  1. Pooled cross-embodiment collections. Dozens of laboratory datasets normalised into one format, spanning more than twenty robot types and over a million trajectories. These are what pretrained action models are built on, and their value is breadth rather than depth per task.
  2. Single-laboratory task collections. Hundreds to a few thousand episodes on one robot for a defined task set, usually with consistent setup and better metadata. Good for fine-tuning and for benchmarking.
  3. Low-cost hardware datasets. Collected on inexpensive bimanual platforms, which makes them reproducible by other groups. Valuable precisely because the hardware is obtainable.
  4. Simulation datasets. Effectively unlimited and free of collection cost, carrying the sim-to-real gap in exchange, especially on contact behaviour.

What the sizes actually mean

Dataset scale and what it costs to work with
ClassEpisodesRaw sizeEmbodimentsTraining GPU days
Single task, single laboratory200 to 2,00010 to 200 GB10.5 to 4
Task suite, single laboratory2,000 to 20,000200 GB to 2 TB1 to 34 to 30
Low-cost bimanual platform1,000 to 10,00050 GB to 1 TB1 to 22 to 20
Pooled cross-embodiment500,000 to 1,000,000+5 to 50 TB20 to 2550 to 500
Simulation generatedunboundedgenerated on demandany10 to 200

The storage column is a practical filter. A 30 TB download is not a casual experiment; it is an infrastructure decision involving bandwidth, storage cost and a data pipeline. Most teams should start from a published pretrained checkpoint rather than from the raw data that produced it.

Using a public dataset properly

Realistic expectations from open data
UseWorksTypical benefit
Pretraining a policy backboneYes3 to 10x less task data needed
Benchmarking your own methodYescomparability, if the protocol matches
Learning your specific task directlyRarelynear zero without fine-tuning
Replacing your own data collectionNonone, your gripper and cell are unique
Validating a perception modelPartlydepends on sensor similarity

Row three and four are the expectation-setting rows. Public data pretrains, it does not deploy. The task-specific fine-tuning set still has to be collected on the actual robot with the actual gripper in the actual cell, and budgeting otherwise is the most common planning error in a robot learning project.

If you release data

  • Record end effector poses alongside joint states, so the data is portable.
  • State the control rate explicitly and keep it constant.
  • Include failures and label them, rather than deleting them.
  • Publish camera intrinsics, extrinsics and mounting geometry.
  • Choose a licence that permits commercial use if you want the data to matter beyond academia.

Frequently asked questions

Which open robot dataset should I use?

For pretraining, a pooled cross-embodiment collection with end effector action space, currently over a million trajectories across more than twenty embodiments. For fine-tuning, your own data on your own robot.

What makes a dataset transferable?

An action space expressed as end effector deltas rather than joint angles, a consistent control rate, and observation setups similar to your own. Without those, the size of the dataset is irrelevant.

Can public data replace my own collection?

No. It pretrains a backbone and reduces task-specific data needs by roughly three to ten times, but the fine-tuning set must come from your robot, your gripper and your cell.

Do licences matter in practice?

Yes. Research-only terms prevent shipping a model trained on that data in a commercial product, and the constraint propagates to the trained weights. Check the licence before training, not after.

Should failures be included in released data?

Yes, and labelled. Policies trained only on clean successes cannot recover from mistakes, so failure and recovery episodes are among the most valuable content a dataset can carry.

Sources

  1. Open X-Embodiment: robotic learning datasets and RT-X modelsScale, embodiment coverage and action space conventions
  2. arXiv robotics preprints, robot learning datasetsPrimary literature on dataset construction and evaluation protocols
  3. MuJoCo documentationContext for simulation-generated datasets and their limitations