Home > Technology peripherals > AI > body text

LeCun's new work: layered world model, data-driven humanoid robot control

PHPz
Release: 2024-06-13 11:37:17
Original
824 people have browsed it

With large models as an intellectual blessing, humanoid robots have become a new trend.

The robot in the science fiction movie "can tell that I am not a human being" seems to be getting closer.

However, it is still a difficult engineering problem for robots, especially humanoid robots, to think and act like humans.

Take a simple learning to walk as an example, using reinforcement learning to train may evolve into the following:

LeCuns new work: layered world model, data-driven humanoid robot control

There is no problem in theory (following the reward mechanism), and the goal of going up the stairs has been achieved. Except that the process is relatively abstract and may not be the same as most human behavior patterns.

The reason it is difficult for robots to act "naturally" like humans is due to the high-dimensional nature of the observation and action space, as well as the inherent instability of the bipedal form.

In this regard, a work LeCun participated in provided a new solution based on data-driven.

LeCuns new work: layered world model, data-driven humanoid robot control

Paper address: https://arxiv.org/pdf/2405.18418

Project introduction: https://nicklashansen.com/rlpuppeteer

Let’s look at the efficacy first:

LeCuns new work: layered world model, data-driven humanoid robot control

Compare the effect on the right , the new method trains behavior that is closer to human beings. Although it has a bit of a "zombie" meaning, the abstraction level has been reduced a lot, at least within the capabilities of most humans.

Of course, some netizens who came to cause trouble said, "The one before looked more interesting."

LeCuns new work: layered world model, data-driven humanoid robot control

In this work, researchers explore a reinforcement learning-based, highly data-driven, visual full-body humanoid control approach without any simplifications assumptions, reward designs, or skill primitives.

The author proposed a hierarchical world model to train two agents, high-level and low-level. The high-level agent generates commands based on visual observations for execution by the low-level agent.

LeCuns new work: layered world model, data-driven humanoid robot control

Open source code: https://github.com/nicklashansen/puppeteer

This model is Named Puppeteer, we utilize a simulated 56-DoF humanoid robot to generate high-performance control strategies across eight tasks while synthesizing natural human-like movements and the ability to traverse challenging terrains.

LeCuns new work: layered world model, data-driven humanoid robot control

High-dimensional control hierarchical world model

Learning and training general-purpose agents in the physical world has always been AI One of the goals of field research.

Humanoid robots, by integrating full-body control and perception, can perform a variety of tasks and stand out as multi-functional platforms.

But the cost of imitating advanced animals like us is still very high.

For example, in the picture below, in order to avoid stepping into pits, the humanoid robot needs to accurately sense the position and length of the oncoming floor gap, and at the same time carefully coordinate its whole body movements to make it effective. Enough momentum and range to cross every gap.

LeCuns new work: layered world model, data-driven humanoid robot control

Puppeteer is a data-driven RL method based on the hierarchical JEPA world model proposed by LeCun in 2022.

LeCuns new work: layered world model, data-driven humanoid robot control

It consists of two different agents: one is responsible for perception and tracking, tracking reference motion through joint-level control; the other "visual puppet" (puppeteer) learns to execute downstream by synthesizing low-dimensional reference motion tasks to provide support for the tracking of the former.

Puppeteer uses the model-based RL algorithm-TD-MPC2 to independently train two agents in two different stages.

(ps: This TD-MPC2 is the animated picture used for comparison at the beginning of the article. Although it seems a bit abstract, it is actually the previous SOTA, published in this year's ICLR, a work Also part of this article)

LeCuns new work: layered world model, data-driven humanoid robot control

## In the first stage, the world model for tracking is first pre-trained, using pre-existing human actions. Capture data as a reference to convert motion into physically actionable actions. This agent can be saved and reused in all downstream tasks.

In the second stage, a puppet world model is trained, which takes visual observations as input and integrates reference motion provided by another agent as output according to the specified downstream task.

This framework seems simple: the two world models are algorithmically the same, only different in input/output, and are trained using RL without any other bells and whistles thing.

Unlike traditional hierarchical RL settings, "Puppet" outputs the geometric positions of the end-effector joints rather than the embedding of the target.

This makes the agent responsible for tracking easy to share and generalize between tasks, saving the space occupied by the overall calculation.

Research Method

The researchers modeled visual full-body humanoid control as an reinforcement controlled by a Markov decision process (MDP) Learning problem, the process is characterized by tuples (S, A, T, R, γ, Δ),

where S is the state, A is the action, and T is the environment transition function , R is the scalar reward function, γ is the discount factor, and Δ is the termination condition.

LeCuns new work: layered world model, data-driven humanoid robot control

As shown in the figure above, the researchers used RL to pre-train the tracking agent on human MoCap data for obtaining proprioceptive information and abstract reference motion input, and synthesizes low-level actions that track reference motion.

Then through online interaction, the advanced puppet agent responsible for downstream tasks is trained. The puppet accepts status and visual information input and outputs commands for the tracking agent to execute.

TD-MPC2

TD-MPC2 learns a latent decoder-free world model from environment interactions, and use the learned model for planning.

LeCuns new work: layered world model, data-driven humanoid robot control

All components of the world model are learned end-to-end using a combination of joint embedding prediction, reward prediction, and temporal difference loss without decoding Original observations.

During inference, TD-MPC2 follows the Model Predictive Control (MPC) framework, using Model Predictive Path Integral (MPPI) as a derivative-free (sampling-based) optimizer for local trajectories optimization.

In order to speed up planning, TD-MPC2 also learns a model-free strategy in advance to pre-start the sampling program.

The two agents are algorithmically identical and both consist of the following 6 components:

LeCuns new work: layered world model, data-driven humanoid robot control

Experiment

To evaluate the effectiveness of the method, the researchers proposed a new task suite using a simulated 56-degree-of-freedom humanoid robot for visual full-body control, containing a total of 8 Challenging tasks, methods used for comparison include SAC, DreamerV3 and TD-MPC2.

The 8 tasks are shown in the figure below, including 5 visual-condition whole-body movement tasks, and another 3 tasks without visual input.

LeCuns new work: layered world model, data-driven humanoid robot control

Missions are designed with a high degree of randomness and involve running down corridors, jumping over obstacles and gaps, walking up stairs, and around walls.

The five visual control tasks all use a reward function proportional to linear forward speed, while the non-visual tasks reward displacement in any direction.

LeCuns new work: layered world model, data-driven humanoid robot control

The above figure plots the learning curve. The results show that SAC and DreamerV3 are unable to achieve meaningful performance on these tasks.

TD-MPC2 performs comparably to this article’s method in terms of rewards, but produces unnatural behavior (see abstract actions in the image below).

LeCuns new work: layered world model, data-driven humanoid robot control

LeCuns new work: layered world model, data-driven humanoid robot control

In addition, in order to prove that the actions generated by Puppeteer are indeed more "natural", this article also conducted human preference Experiments with 46 participants showed that humans generally like the motion generated by this method.

The above is the detailed content of LeCun's new work: layered world model, data-driven humanoid robot control. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:51cto.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!