Home Technology peripherals AI Berkeley open source high-quality large-scale robot control benchmark, no longer difficult to face complex autonomous control tasks

Berkeley open source high-quality large-scale robot control benchmark, no longer difficult to face complex autonomous control tasks

Feb 01, 2024 am 09:48 AM
industry robot technology fmb Function control

Berkeley open source high-quality large-scale robot control benchmark, no longer difficult to face complex autonomous control tasks

#With the rapid development of artificial intelligence and robotics technology, the importance of functional manipulation in robotics has become increasingly prominent. Traditional benchmark tests can no longer meet the current needs of robots for complex manipulation tasks, calling for the emergence of new manipulation benchmarks (Functional Manipulation Benchmarks).

Overview

Robot control faces two main challenges: How the robot handles intelligently Complex contact dynamics and how to respond to the diversity of environments and objects. In response to these challenges, robot learning technology is regarded as a key solution. Therefore, the field needs a comprehensive and accessible framework that provides challenging real-world tasks, high-quality data, easily replicable settings, and relevant methods that integrate baseline results. Based on this framework, researchers can conduct experiments on proposed tasks. Discover for in-depth analysis.

The research team at the University of California, Berkeley, Robotics Intelligent Laboratory (RAIL) proposed a real-world benchmark as mentioned above, called FMB (Functional Manipulation Benchmark for Generalizable Robotic Learning ).

Berkeley open source high-quality large-scale robot control benchmark, no longer difficult to face complex autonomous control tasks

  • Project homepage: https://functional-manipulation-benchmark.github.io/
  • Paper address: https://arxiv.org/abs/2401.08553
  • Paper title: FMB: a Functional Manipulation Benchmark for Generalizable Robotic Learning
  • Co-first author homepage: https://people.eecs.berkeley.edu/~jianlanluo/
  • https://charlesxu0124.github.io/

FMB has the following characteristics:

  • Innovative design: produced using 3D printing technology Objects in the task are used to test the robot's generalization ability. This method can also be easily reproduced by other researchers.
  • Diversified tasks: including single-object and multi-object multi-stage manipulation tasks, truly simulating challenges in daily environments.
  • Large Dataset: Through a large number of human demonstrations, the robot is provided with a rich data set.
  • Imitation Learning Baseline: Using state-of-the-art machine learning methods, baseline results and modular components are provided for use by other researchers.

Objects and Tasks

The tasks in FMB are roughly Divided into two categories: single-object multi-step manipulation tasks and multi-object multi-step manipulation tasks. These tasks are designed to test the robot's basic skills such as grasping, repositioning and assembly, which are necessary to complete the entire task. The tasks in FMB require the robot to not only complete a single control skill, but also require the robot to combine these skills to complete more complex multi-step tasks.

FMB's task design is flexible and changeable. Researchers can choose to focus on a single skill as needed, study the robot's control capabilities in depth, or study complete multi-step tasks. This requires long-term planning on the part of the robot and the ability to recover from failure. More complex multi-step tasks require the robot to make complex real-time decisions, as they involve selecting appropriate objects and reasoning about the sequence of manipulating them.

Berkeley open source high-quality large-scale robot control benchmark, no longer difficult to face complex autonomous control tasks

Berkeley open source high-quality large-scale robot control benchmark, no longer difficult to face complex autonomous control tasks

Large Data Set

In the process of robot learning, the role of data cannot be underestimated. In order to enable robots to better understand and master complex tasks, the research team collected a large-scale expert human demonstration data set covering the above tasks, containing more than 20,000 operation trajectories. The research team used four different cameras to record these demonstration data, two of which were mounted on the robot's wrist and two of which provided a global perspective. These cameras capture data such as RGB color image information, depth information, and more that are critical for the robot to learn to solve tasks.

In addition, the data set also records force/torque information of the robot’s end effector, which is very important for tasks like assembly that require contact with a large number of objects. Through this rich data, robots can deeply understand every detail of the task and imitate human operating skills more accurately. It is precisely because of the depth and breadth of data that it provides a solid foundation for robot learning. This enables robots to respond to tasks more humanely and dexterously when performing complex tasks.

Berkeley open source high-quality large-scale robot control benchmark, no longer difficult to face complex autonomous control tasks

Berkeley open source high-quality large-scale robot control benchmark, no longer difficult to face complex autonomous control tasks

Imitation Learning Baseline

Berkeley open source high-quality large-scale robot control benchmark, no longer difficult to face complex autonomous control tasks

Architecture diagram of the baseline strategy.

Both models based on Transformer and ResNet use a ResNet encoder with shared weights to encode each image view, and then combine it with proprioception Information and selectable objects are combined with corresponding robot skill encoding features to predict 7 degrees of freedom actions.

#The experimental part of FMB conducts a series of tests on the performance of imitation learning systems, comparing different learning methods and exploring the impact of different input modes and design decisions. Experiments found that using depth information helps improve the effectiveness of grasping strategies, and force/torque information is very important for assembly tasks. For multi-step tasks, traditional ResNet, Transformer and Diffusion methods have failed, but the hierarchical control method proposed in this paper shows potential.

Crawling task

Berkeley open source high-quality large-scale robot control benchmark, no longer difficult to face complex autonomous control tasks

The experimental results show that the ResNet strategy that incorporates depth information is The performance in the crawling task is consistently better than the strategy using only RGB information. Through the data reduction study, the research team explored the impact of different amounts of training data on the performance of the crawling task. The results show that the performance of the ResNet strategy that incorporates depth information when processing seen objects will improve as the amount of training data increases. Notably, this strategy shows similar performance to seen objects for unseen objects, indicating that the diversity of training objects greatly contributes to the robot's generalization ability.

Assembly tasks

Berkeley open source high-quality large-scale robot control benchmark, no longer difficult to face complex autonomous control tasks

The importance of force/torque information in assembly tasks It was confirmed. Force/torque information is very important for the strategy adopted by the robot to determine whether the object has contacted the target surface and to effectively conduct actions such as searching.

Berkeley open source high-quality large-scale robot control benchmark, no longer difficult to face complex autonomous control tasks

#However, when the policy is trained on all objects, the robot is not always able to successfully complete the assembly task. This is because the strategy needs to first determine which hole the object should be fitted into and then generate the corresponding actions, which greatly increases the complexity of the task. In order to solve this problem, the research team added an object selection mechanism to the strategy to help the strategy determine the shape of the objects that need to be assembled, thereby focusing on generating correct assembly actions.

Multi-step tasks

Berkeley open source high-quality large-scale robot control benchmark, no longer difficult to face complex autonomous control tasks

FMB’s framework encompasses two complex tasks. These complex tasks require robots to be able to complete multiple steps in a row just like humans. The previous method was to let the robot learn the entire process, but this method was prone to accumulating errors due to errors in a single link, eventually leading to the failure of the entire task. This approach has a success rate of 0/10 in both single and multiple object manipulation tasks.

To address the cumulative error problem, the research team adopted a hierarchical control strategy. The hierarchical strategy decomposes the task into several small pieces. Each completed piece is equivalent to passing a decision point. Even if errors occur, they can be quickly corrected to avoid affecting subsequent links. For example, if a robot fails to securely grasp an object during a grasp, it will keep trying until it succeeds.

The research team tested two hierarchical approaches. The first provides a valid vector indicating the task type for a single policy, while the second provides for each The control skills are trained separately with different strategies, both using the operator's instructions as the upper-level strategy. In the test, the research team found that both methods performed well.

The test results show the effectiveness of the hierarchical approach in handling complex robotic tasks and provide new research directions for future research.

Berkeley open source high-quality large-scale robot control benchmark, no longer difficult to face complex autonomous control tasks

As shown in the picture above, the robot can autonomously perform functional control after learning.

Berkeley open source high-quality large-scale robot control benchmark, no longer difficult to face complex autonomous control tasks

Overall, the above experiments demonstrate the technological innovation of the research team in the field of robot learning, and also verify that FMB is a benchmark suitable for developing advanced robot learning methods. The research team looks forward to future research that can further push the boundaries of robot learning based on FMB.

The above is the detailed content of Berkeley open source high-quality large-scale robot control benchmark, no longer difficult to face complex autonomous control tasks. For more information, please follow other related articles on the PHP Chinese website!

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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

DeepMind robot plays table tennis, and its forehand and backhand slip into the air, completely defeating human beginners DeepMind robot plays table tennis, and its forehand and backhand slip into the air, completely defeating human beginners Aug 09, 2024 pm 04:01 PM

But maybe he can’t defeat the old man in the park? The Paris Olympic Games are in full swing, and table tennis has attracted much attention. At the same time, robots have also made new breakthroughs in playing table tennis. Just now, DeepMind proposed the first learning robot agent that can reach the level of human amateur players in competitive table tennis. Paper address: https://arxiv.org/pdf/2408.03906 How good is the DeepMind robot at playing table tennis? Probably on par with human amateur players: both forehand and backhand: the opponent uses a variety of playing styles, and the robot can also withstand: receiving serves with different spins: However, the intensity of the game does not seem to be as intense as the old man in the park. For robots, table tennis

The first mechanical claw! Yuanluobao appeared at the 2024 World Robot Conference and released the first chess robot that can enter the home The first mechanical claw! Yuanluobao appeared at the 2024 World Robot Conference and released the first chess robot that can enter the home Aug 21, 2024 pm 07:33 PM

On August 21, the 2024 World Robot Conference was grandly held in Beijing. SenseTime's home robot brand "Yuanluobot SenseRobot" has unveiled its entire family of products, and recently released the Yuanluobot AI chess-playing robot - Chess Professional Edition (hereinafter referred to as "Yuanluobot SenseRobot"), becoming the world's first A chess robot for the home. As the third chess-playing robot product of Yuanluobo, the new Guoxiang robot has undergone a large number of special technical upgrades and innovations in AI and engineering machinery. For the first time, it has realized the ability to pick up three-dimensional chess pieces through mechanical claws on a home robot, and perform human-machine Functions such as chess playing, everyone playing chess, notation review, etc.

Claude has become lazy too! Netizen: Learn to give yourself a holiday Claude has become lazy too! Netizen: Learn to give yourself a holiday Sep 02, 2024 pm 01:56 PM

The start of school is about to begin, and it’s not just the students who are about to start the new semester who should take care of themselves, but also the large AI models. Some time ago, Reddit was filled with netizens complaining that Claude was getting lazy. "Its level has dropped a lot, it often pauses, and even the output becomes very short. In the first week of release, it could translate a full 4-page document at once, but now it can't even output half a page!" https:// www.reddit.com/r/ClaudeAI/comments/1by8rw8/something_just_feels_wrong_with_claude_in_the/ in a post titled "Totally disappointed with Claude", full of

At the World Robot Conference, this domestic robot carrying 'the hope of future elderly care' was surrounded At the World Robot Conference, this domestic robot carrying 'the hope of future elderly care' was surrounded Aug 22, 2024 pm 10:35 PM

At the World Robot Conference being held in Beijing, the display of humanoid robots has become the absolute focus of the scene. At the Stardust Intelligent booth, the AI ​​robot assistant S1 performed three major performances of dulcimer, martial arts, and calligraphy in one exhibition area, capable of both literary and martial arts. , attracted a large number of professional audiences and media. The elegant playing on the elastic strings allows the S1 to demonstrate fine operation and absolute control with speed, strength and precision. CCTV News conducted a special report on the imitation learning and intelligent control behind "Calligraphy". Company founder Lai Jie explained that behind the silky movements, the hardware side pursues the best force control and the most human-like body indicators (speed, load) etc.), but on the AI ​​side, the real movement data of people is collected, allowing the robot to become stronger when it encounters a strong situation and learn to evolve quickly. And agile

ACL 2024 Awards Announced: One of the Best Papers on Oracle Deciphering by HuaTech, GloVe Time Test Award ACL 2024 Awards Announced: One of the Best Papers on Oracle Deciphering by HuaTech, GloVe Time Test Award Aug 15, 2024 pm 04:37 PM

At this ACL conference, contributors have gained a lot. The six-day ACL2024 is being held in Bangkok, Thailand. ACL is the top international conference in the field of computational linguistics and natural language processing. It is organized by the International Association for Computational Linguistics and is held annually. ACL has always ranked first in academic influence in the field of NLP, and it is also a CCF-A recommended conference. This year's ACL conference is the 62nd and has received more than 400 cutting-edge works in the field of NLP. Yesterday afternoon, the conference announced the best paper and other awards. This time, there are 7 Best Paper Awards (two unpublished), 1 Best Theme Paper Award, and 35 Outstanding Paper Awards. The conference also awarded 3 Resource Paper Awards (ResourceAward) and Social Impact Award (

Hongmeng Smart Travel S9 and full-scenario new product launch conference, a number of blockbuster new products were released together Hongmeng Smart Travel S9 and full-scenario new product launch conference, a number of blockbuster new products were released together Aug 08, 2024 am 07:02 AM

This afternoon, Hongmeng Zhixing officially welcomed new brands and new cars. On August 6, Huawei held the Hongmeng Smart Xingxing S9 and Huawei full-scenario new product launch conference, bringing the panoramic smart flagship sedan Xiangjie S9, the new M7Pro and Huawei novaFlip, MatePad Pro 12.2 inches, the new MatePad Air, Huawei Bisheng With many new all-scenario smart products including the laser printer X1 series, FreeBuds6i, WATCHFIT3 and smart screen S5Pro, from smart travel, smart office to smart wear, Huawei continues to build a full-scenario smart ecosystem to bring consumers a smart experience of the Internet of Everything. Hongmeng Zhixing: In-depth empowerment to promote the upgrading of the smart car industry Huawei joins hands with Chinese automotive industry partners to provide

Distributed Artificial Intelligence Conference DAI 2024 Call for Papers: Agent Day, Richard Sutton, the father of reinforcement learning, will attend! Yan Shuicheng, Sergey Levine and DeepMind scientists will give keynote speeches Distributed Artificial Intelligence Conference DAI 2024 Call for Papers: Agent Day, Richard Sutton, the father of reinforcement learning, will attend! Yan Shuicheng, Sergey Levine and DeepMind scientists will give keynote speeches Aug 22, 2024 pm 08:02 PM

Conference Introduction With the rapid development of science and technology, artificial intelligence has become an important force in promoting social progress. In this era, we are fortunate to witness and participate in the innovation and application of Distributed Artificial Intelligence (DAI). Distributed artificial intelligence is an important branch of the field of artificial intelligence, which has attracted more and more attention in recent years. Agents based on large language models (LLM) have suddenly emerged. By combining the powerful language understanding and generation capabilities of large models, they have shown great potential in natural language interaction, knowledge reasoning, task planning, etc. AIAgent is taking over the big language model and has become a hot topic in the current AI circle. Au

Li Feifei's team proposed ReKep to give robots spatial intelligence and integrate GPT-4o Li Feifei's team proposed ReKep to give robots spatial intelligence and integrate GPT-4o Sep 03, 2024 pm 05:18 PM

Deep integration of vision and robot learning. When two robot hands work together smoothly to fold clothes, pour tea, and pack shoes, coupled with the 1X humanoid robot NEO that has been making headlines recently, you may have a feeling: we seem to be entering the age of robots. In fact, these silky movements are the product of advanced robotic technology + exquisite frame design + multi-modal large models. We know that useful robots often require complex and exquisite interactions with the environment, and the environment can be represented as constraints in the spatial and temporal domains. For example, if you want a robot to pour tea, the robot first needs to grasp the handle of the teapot and keep it upright without spilling the tea, then move it smoothly until the mouth of the pot is aligned with the mouth of the cup, and then tilt the teapot at a certain angle. . this

See all articles