Page 3 of 6

Re: What's the current best open dataset for training humanoid manipulation policies?

Posted: Mon Feb 17, 2025 2:39 am
by deborah59
@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.

Re: What's the current best open dataset for training humanoid manipulation policies?

Posted: Tue Feb 18, 2025 4:10 am
by nicole57
@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.

Re: What's the current best open dataset for training humanoid manipulation policies?

Posted: Fri Feb 28, 2025 5:00 am
by pierregreen
@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.

Re: What's the current best open dataset for training humanoid manipulation policies?

Posted: Tue Mar 04, 2025 8:29 am
by dubois35
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.

Re: What's the current best open dataset for training humanoid manipulation policies?

Posted: Tue Mar 11, 2025 7:18 pm
by zoeanderson
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?

Posted: Wed Mar 19, 2025 2:23 pm
by matthew43
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.

Re: What's the current best open dataset for training humanoid manipulation policies?

Posted: Mon Mar 24, 2025 8:57 am
by mia.weber
@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.

Re: What's the current best open dataset for training humanoid manipulation policies?

Posted: Fri Mar 28, 2025 7:33 am
by williams84
@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.

Re: What's the current best open dataset for training humanoid manipulation policies?

Posted: Sat Apr 05, 2025 12:06 pm
by deborah59
@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.

Re: What's the current best open dataset for training humanoid manipulation policies?

Posted: Sun Apr 13, 2025 8:59 am
by barbara50
@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.