LeRobot: An Open-Source Library

LeRobot Library Overview

Now that we’ve learnt some history, let’s explore the main python library that we will be using throughout the course, LeRobot.

LeRobot is the open-source library for end-to-end robotics developed by Hugging Face. The library is vertically integrated on the entire robotics stack, supporting low-level control of real-world robot devices, advanced data and inference optimizations, as well as SOTA robot learning methods with simple implementations in pure PyTorch.

By vertically integrating, we mean that LeRobot provides a unified interface for handling multi-modal, time-series data, and it is designed to play nicely with the PyTorch and Hugging Face ecosystems. In short, LeRobot is intended to be used as a single library for all your robotics needs. Much like how transformers is used for all your ML needs.

Supported Robots: LeRobot currently supports accessible platforms such as SO-100/SO-101 (3D‑printable arms) and ALOHA/ALOHA‑2 (bimanual manipulation). For the up‑to‑date list of supported platforms, see the official documentation.

LeRobot also implements a unified, low-level approach to reading/writing robot configurations to extend support for other robot platforms with relatively low effort. The library introduces LeRobotDataset, a native robotics dataset format currently being used by the community to efficiently record and share datasets.

LeRobot also supports many state-of-the-art (SOTA) algorithms in robot learning—mainly based on Reinforcement Learning (RL) and Behavioral Cloning (BC) techniques—with efficient implementations in PyTorch, and extended support to experimentation and experiments tracking. Lastly, LeRobot defines a custom, optimized inference stack for robotic policies decoupling action planning from action execution, proving effective in guaranteeing more adaptability at runtime.

Performance Note: LeRobot’s optimized inference stack is crucial for real-time robot control, where delays of even milliseconds can affect performance. This separation of planning and execution is a key innovation.

Tutorial Structure

This tutorial serves the double purpose of providing useful references for the Science behind—and practical use of—common robot learning techniques. To this aim, we strike to provide a rigorous yet concise overview of the core concepts behind the techniques presented, paired with practical examples of how to use such techniques concretely, with code examples in LeRobot, for researchers and practitioners interested in the field of robot learning.

Our goal with this tutorial is to provide an intuitive explanation of the reasons various disparate ideas from Machine Learning (ML) have converged and are powering the current evolution of Robotics, driving the unprecedented progress we see today. We complement our presentation of the most common and recent approaches in robot learning with practical code implementations using LeRobot, and start here by presenting the dataset format introduced with LeRobot.

< > Update on GitHub