From 741c2d0a3939ba54d6cf47f29a7fbbba3766a600 Mon Sep 17 00:00:00 2001 From: Nikodem Bartnik <39432165+NikodemBartnik@users.noreply.github.com> Date: Wed, 3 Jun 2026 14:22:05 +0200 Subject: [PATCH] Docs/add lelab (#3707) * first text draft (no images) * simplified docs * fix formatting * add youtube video * add a tip about compatibility * fix broken link --- docs/source/_toctree.yml | 2 ++ docs/source/lelab.mdx | 29 +++++++++++++++++++++++++++++ 2 files changed, 31 insertions(+) create mode 100644 docs/source/lelab.mdx diff --git a/docs/source/_toctree.yml b/docs/source/_toctree.yml index a216548d8..ce36fad5d 100644 --- a/docs/source/_toctree.yml +++ b/docs/source/_toctree.yml @@ -9,6 +9,8 @@ - sections: - local: il_robots title: Imitation Learning for Robots + - local: lelab + title: LeLab - Lerobot GUI - local: bring_your_own_policies title: Adding a Policy - local: integrate_hardware diff --git a/docs/source/lelab.mdx b/docs/source/lelab.mdx new file mode 100644 index 000000000..a9f28e57b --- /dev/null +++ b/docs/source/lelab.mdx @@ -0,0 +1,29 @@ +# LeLab - LeRobot Guide + +LeLab is a graphical user interface built on top of the LeRobot library, designed to make robotics accessible without needing to memorize CLI commands. From a single app you can configure your robot, teleoperate it, collect datasets, train policies locally or on cloud GPUs via HF Jobs, and deploy trained models back onto your robot. It's the easiest way to go from an unboxed SO-101 to a working policy, and a great companion for anyone learning the LeRobot workflow. Source code and issues live on GitHub: [huggingface/leLab](https://github.com/huggingface/leLab). + +> [!TIP] +> For now LeLab is compatible only with SO-ARM101 + + + +### Installation + +Requires [`uv`](https://docs.astral.sh/uv/getting-started/installation/). Install and launch in one command: + +``` +uv tool install git+https://github.com/huggingface/leLab.git && lelab +``` + +After install, run `lelab` from your terminal anytime to start the app. + +### Features + +- **Add robots** — Select arm type (leader/follower), calibrate each joint from the middle position, and attach cameras. +- **Teleoperation** — Control the follower arm with the leader and see a live 3D visualization of the arms. +- **Dataset recording** — Define a task description, number of episodes, and episode/reset durations. Press spacebar to advance between episodes. 30+ episodes recommended. +- **Local training** — Train a policy directly on your own machine with a selected dataset, policy type, batch size, and step count. +- **Cloud training with HF Jobs** — Train on powerful GPUs via [HF Jobs](https://huggingface.co/docs/huggingface_hub/en/guides/jobs) with transparent pricing. Run `hf auth login` first. See the [Compute HW Guide](hardware_guide) for hardware/batch size tips. +- **Training visualization** — Watch progress live in the app, with checkpoints saved automatically. +- **Run trained policies** — Pick any model from your jobs list and run inference on your robot with one click. +- **Use community datasets** — Provide any Hugging Face dataset ID to train on datasets you didn't record yourself.