


Tesla humanoid robot further evolves: realizing yoga capabilities through visual autonomous classification
The Tesla humanoid robot Optimus Prime (Optimus), which has been dormant for several months, finally has new developments. I remember the last time I saw it was at the Tesla Shareholders Meeting. At that time, Optimus demonstrated skills such as walking freely and flexibly grabbing and putting down objects.
Tesla Optimus got another upgrade today. Now, it has the ability to classify objects autonomously. The most striking of these are neural networks that are fully trained end-to-end: input video, output control. This is similar to the neural network training in the development of Tesla’s self-driving FSD V12, which can process all input signals and output driving decisions
Can’t help but ask , how to do it?
Optimus has the ability to self-calibrate its arms and legs. Using only vision and joint position encoders, it can accurately position its limbs in space
Optimus has precise calibration capabilities, allowing it to learn a variety of tasks more efficiently. It fully implements on-board operation on its neural network using only visual input
In this way, Optimus can classify objects by color completely autonomously.
Even if there is interference, Optimus is still able to accurately classify objects by color
# Optimus has also demonstrated the ability to perform autonomous corrections (straightening an object that is crooked).
After training, it can also perform new tasks, such as shuffling classified objects.
After a long day of "work", it's time to stretch and put your hands together.
Team senior software engineer Julian Ibarz said, "I am very happy to share the team's Progress has been made over the past few months. Now Optimus can complete long-term tasks, such as automatically classifying objects in a completely task-agnostic manner. New complex tasks can be trained without any code changes, simply by collecting more data.”
Musk also confirmed this "progress"
Netizens were shocked and also raised some questions, such as whether it is possible to enter prompt to let Optimus perform tasks? The answer is yes, the same network is used in videos to perform classification or unclassification tasks, just tell Optimus what you want to do.
Optimus's "Past and Present Life"
Optimus was not a physical robot from the beginning. From a universal robot plan like "Tesla Bot", it is slowly hatched.
Musk showed the general shape of Tesla Bot at the "Tesla AI Day" in 2021.
Even during the demonstration of Tesla Bot’s movements, the staff wore special tight-fitting costumes and performed a dance pretending to be a robot. But it is such an idea that gradually takes root and moves towards reality, surprising people with breakthroughs time and time again.
One year later, at the "Tesla AI Day", Tesla Bot, once played by a human, became the robot Optimus.
Optimus greets people at Tesla AI Day 2022
When Optimus first appeared, he was already able to carry boxes, water flowers, and work in a factory. However, that's not Optimus' ultimate goal. Optimus' goal is to become a humanoid robot with a "brain"
Optimus works in the Tesla Gigafactory
Musk said that it only took half a year to design the robot, and there is a lot to look forward to in its future shape.
At the 2023 Tesla Shareholders Meeting, Optimus performed even better, with a smoother pace and more skillful movements
Optimizers can flexibly grab and put down objects
And now, Optimus has continued to move towards its goal, and the journey to possessing a "brain" has also become faster and faster. The path becomes clearer. We'll have to wait and see how it evolves next time.
The above is the detailed content of Tesla humanoid robot further evolves: realizing yoga capabilities through visual autonomous classification. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



Creating an Oracle database is not easy, you need to understand the underlying mechanism. 1. You need to understand the concepts of database and Oracle DBMS; 2. Master the core concepts such as SID, CDB (container database), PDB (pluggable database); 3. Use SQL*Plus to create CDB, and then create PDB, you need to specify parameters such as size, number of data files, and paths; 4. Advanced applications need to adjust the character set, memory and other parameters, and perform performance tuning; 5. Pay attention to disk space, permissions and parameter settings, and continuously monitor and optimize database performance. Only by mastering it skillfully requires continuous practice can you truly understand the creation and management of Oracle databases.

To create an Oracle database, the common method is to use the dbca graphical tool. The steps are as follows: 1. Use the dbca tool to set the dbName to specify the database name; 2. Set sysPassword and systemPassword to strong passwords; 3. Set characterSet and nationalCharacterSet to AL32UTF8; 4. Set memorySize and tablespaceSize to adjust according to actual needs; 5. Specify the logFile path. Advanced methods are created manually using SQL commands, but are more complex and prone to errors. Pay attention to password strength, character set selection, tablespace size and memory

The core of Oracle SQL statements is SELECT, INSERT, UPDATE and DELETE, as well as the flexible application of various clauses. It is crucial to understand the execution mechanism behind the statement, such as index optimization. Advanced usages include subqueries, connection queries, analysis functions, and PL/SQL. Common errors include syntax errors, performance issues, and data consistency issues. Performance optimization best practices involve using appropriate indexes, avoiding SELECT *, optimizing WHERE clauses, and using bound variables. Mastering Oracle SQL requires practice, including code writing, debugging, thinking and understanding the underlying mechanisms.

Field operation guide in MySQL: Add, modify, and delete fields. Add field: ALTER TABLE table_name ADD column_name data_type [NOT NULL] [DEFAULT default_value] [PRIMARY KEY] [AUTO_INCREMENT] Modify field: ALTER TABLE table_name MODIFY column_name data_type [NOT NULL] [DEFAULT default_value] [PRIMARY KEY]

The integrity constraints of Oracle databases can ensure data accuracy, including: NOT NULL: null values are prohibited; UNIQUE: guarantee uniqueness, allowing a single NULL value; PRIMARY KEY: primary key constraint, strengthen UNIQUE, and prohibit NULL values; FOREIGN KEY: maintain relationships between tables, foreign keys refer to primary table primary keys; CHECK: limit column values according to conditions.

Nested queries are a way to include another query in one query. They are mainly used to retrieve data that meets complex conditions, associate multiple tables, and calculate summary values or statistical information. Examples include finding employees above average wages, finding orders for a specific category, and calculating the total order volume for each product. When writing nested queries, you need to follow: write subqueries, write their results to outer queries (referenced with alias or AS clauses), and optimize query performance (using indexes).

This article describes how to customize Apache's log format on Debian systems. The following steps will guide you through the configuration process: Step 1: Access the Apache configuration file The main Apache configuration file of the Debian system is usually located in /etc/apache2/apache2.conf or /etc/apache2/httpd.conf. Open the configuration file with root permissions using the following command: sudonano/etc/apache2/apache2.conf or sudonano/etc/apache2/httpd.conf Step 2: Define custom log formats to find or

Oracle is the world's largest database management system (DBMS) software company. Its main products include the following functions: relational database management system (Oracle database) development tools (Oracle APEX, Oracle Visual Builder) middleware (Oracle WebLogic Server, Oracle SOA Suite) cloud service (Oracle Cloud Infrastructure) analysis and business intelligence (Oracle Analytics Cloud, Oracle Essbase) blockchain (Oracle Blockchain Pla
