What's the current best open dataset for training humanoid manipulation policies?
Re: What's the current best open dataset for training humanoid manipulation policies?
@choi98 I'd take that specific number with a grain of salt, honestly.
Cross-embodiment training (training one policy across data from multiple different robot bodies) has shown some real transfer benefits for high-level behaviors, but low-level control (exact joint torques, timing) still tends to need embodiment-specific fine-tuning.
Ex-automotive, now full-time robots.
Re: What's the current best open dataset for training humanoid manipulation policies?
@deborah59 Side note that might be relevant:
Diffusion policies model the distribution of possible actions and sample from it, which handles multimodal manipulation tasks (multiple valid ways to grasp something) more naturally than a single deterministic action output, at the cost of slower inference.
she/her | grad student, biped locomotion
-
pierregreen
- Posts: 205
- Joined: Thu Dec 12, 2024 11:01 am
Re: What's the current best open dataset for training humanoid manipulation policies?
@nicole57 Just to be precise about one thing:
Vision-Language-Action (VLA) models like RT-2, OpenVLA, and Physical Intelligence's pi0 unify a vision-language backbone with an action-output head, letting a robot map a camera image and a text instruction directly to motor commands instead of hand-coding separate perception and planning stages.
she/her
Re: What's the current best open dataset for training humanoid manipulation policies?
This matches what I've seen too.
Cross-embodiment training (training one policy across data from multiple different robot bodies) has shown some real transfer benefits for high-level behaviors, but low-level control (exact joint torques, timing) still tends to need embodiment-specific fine-tuning. Isaac Lab (the successor to Isaac Gym) is widely used for large-scale parallel RL training thanks to GPU-accelerated physics, while MuJoCo is often used as a secondary 'sim-to-sim' validation step because its contact dynamics are generally considered more realistic than Isaac's, even though it trains slower at scale.
they/them
-
zoeanderson
- Posts: 243
- Joined: Sat Oct 26, 2024 2:39 am
Re: What's the current best open dataset for training humanoid manipulation policies?
Slight correction, though the overall point stands:
Vision-Language-Action (VLA) models like RT-2, OpenVLA, and Physical Intelligence's pi0 unify a vision-language backbone with an action-output head, letting a robot map a camera image and a text instruction directly to motor commands instead of hand-coding separate perception and planning stages.
Makes me wonder how this looks in another five years.
Re: What's the current best open dataset for training humanoid manipulation policies?
Not to derail, but this reminds me of something adjacent:
A lot of what reads as 'full autonomy' in public demos is closer to a mix of scripted state machines, teleoperation for the hardest sub-tasks, and autonomous execution for the easier, well-rehearsed parts - transparency about this mix varies a lot between companies.
he/him | robotics hobbyist since the DARPA Grand Challenge days
Re: What's the current best open dataset for training humanoid manipulation policies?
@matthew43 From hands-on experience,
OpenVLA is a notable open-source VLA model - roughly 7 billion parameters, trained on hundreds of thousands of real-world robot demonstrations - and has been shown to outperform much larger closed models on some manipulation benchmarks, which says a lot about how much of VLA performance comes from data curation rather than raw scale.
-
williams84
- Posts: 237
- Joined: Sat Sep 28, 2024 8:50 am
Re: What's the current best open dataset for training humanoid manipulation policies?
@mia.weber Tangent, but worth mentioning:
Whole-body control (WBC) formulates locomotion and manipulation as a single optimization problem across all joints simultaneously, respecting contact constraints and task priorities - it's more general than ZMP-only approaches but is computationally heavier and harder to tune.
"The best actuator is the one that doesn't overheat."
Re: What's the current best open dataset for training humanoid manipulation policies?
@williams84 This matches what I've seen too.
OpenVLA is a notable open-source VLA model - roughly 7 billion parameters, trained on hundreds of thousands of real-world robot demonstrations - and has been shown to outperform much larger closed models on some manipulation benchmarks, which says a lot about how much of VLA performance comes from data curation rather than raw scale.
This whole thread is a good reminder how young this field still is.
Ex-automotive, now full-time robots.
Re: What's the current best open dataset for training humanoid manipulation policies?
@deborah59 I dealt with almost this exact situation.
Sim-to-real transfer still commonly breaks on contact dynamics - friction, restitution, and deformable/compliant surfaces are the hardest things to model accurately in simulation, so policies trained purely in sim often need real-world fine-tuning specifically around contact-rich tasks.
Opinions my own, not my employer's.