mirror of
https://github.com/huggingface/lerobot.git
synced 2026-07-26 11:16:00 +00:00
90819482f5
- Rewrite observation section to use raw RoboCasa camera keys
(observation.images.robot0_agentview_{left,right},
observation.images.robot0_eye_in_hand).
- Add a "Training on a single task" section with a full smolvla
training command on pepijn223/robocasa_CloseFridge, plus matching
single-task eval command.
- Document benchmark-group task shortcuts (atomic_seen, composite_seen,
composite_unseen, pretrain50/100/200/300) as valid --env.task values.
Made-with: Cursor
126 lines
4.6 KiB
Plaintext
126 lines
4.6 KiB
Plaintext
# RoboCasa365
|
|
|
|
RoboCasa365 is a large-scale simulation framework for training and benchmarking **generalist robots** in everyday kitchen tasks. It provides 365 diverse manipulation tasks across 2,500 kitchen environments, with over 3,200 object assets and 600+ hours of human demonstration data. The benchmark tests whether robots can handle the diversity and complexity of real-world household environments.
|
|
|
|
- Paper: [RoboCasa365: A Large-Scale Simulation Framework for Training and Benchmarking Generalist Robots](https://arxiv.org/abs/2603.04356)
|
|
- GitHub: [robocasa/robocasa](https://github.com/robocasa/robocasa)
|
|
- Project website: [robocasa.ai](https://robocasa.ai)
|
|
|
|
## Available tasks
|
|
|
|
RoboCasa365 includes **365 tasks** organized into atomic (single-skill) and composite (multi-step) categories:
|
|
|
|
| Category | Tasks | Description |
|
|
| --------- | ----- | ------------------------------------------------------------------------------- |
|
|
| Atomic | ~65 | Single-skill tasks: pick-and-place, door/drawer manipulation, appliance control |
|
|
| Composite | ~300 | Multi-step tasks across 60+ categories: cooking, cleaning, organizing, etc. |
|
|
|
|
**Atomic task examples:** `CloseFridge`, `OpenBlenderLid`, `PickPlaceCoffee`, `ManipulateStoveKnob`, `NavigateKitchen`, `TurnOnToaster`
|
|
|
|
**Composite task categories:** baking, boiling, brewing, chopping food, clearing table, defrosting food, loading dishwasher, making tea, microwaving food, washing dishes, and many more.
|
|
|
|
`--env.task` accepts three forms:
|
|
|
|
- a single task name (e.g. `CloseFridge`)
|
|
- a comma-separated list of task names (e.g. `CloseFridge,OpenBlenderLid`)
|
|
- a benchmark-group shortcut — `atomic_seen`, `composite_seen`, `composite_unseen`, `pretrain50`, `pretrain100`, `pretrain200`, `pretrain300` — which auto-expands to the upstream task list and auto-sets the dataset `split` (`target` or `pretrain`).
|
|
|
|
## Installation
|
|
|
|
After following the LeRobot installation instructions:
|
|
|
|
```bash
|
|
pip install -e ".[robocasa]"
|
|
python -m robocasa.scripts.setup_macros
|
|
python -m robocasa.scripts.download_kitchen_assets
|
|
```
|
|
|
|
<Tip>
|
|
RoboCasa365 requires MuJoCo for simulation. Set the rendering backend before training or evaluation:
|
|
|
|
```bash
|
|
export MUJOCO_GL=egl # for headless servers (HPC, cloud)
|
|
```
|
|
|
|
</Tip>
|
|
|
|
## Policy inputs and outputs
|
|
|
|
**Observations** (raw RoboCasa camera names are preserved verbatim):
|
|
|
|
- `observation.state` -- 16-dim proprioceptive state (base position, base quaternion, relative end-effector position, relative end-effector quaternion, gripper qpos)
|
|
- `observation.images.robot0_agentview_left` -- left agent view, 256x256 HWC uint8
|
|
- `observation.images.robot0_eye_in_hand` -- wrist camera view, 256x256 HWC uint8
|
|
- `observation.images.robot0_agentview_right` -- right agent view, 256x256 HWC uint8
|
|
|
|
**Actions:**
|
|
|
|
- Continuous control in `Box(-1, 1, shape=(12,))` -- base motion (4D) + control mode (1D) + end-effector position (3D) + end-effector rotation (3D) + gripper (1D)
|
|
|
|
## Training on a single task
|
|
|
|
A ready-to-use single-task dataset is available on the Hub:
|
|
[`pepijn223/robocasa_CloseFridge`](https://huggingface.co/datasets/pepijn223/robocasa_CloseFridge).
|
|
|
|
Train a SmolVLA policy on `CloseFridge`:
|
|
|
|
```bash
|
|
lerobot-train \
|
|
--policy.type=smolvla \
|
|
--policy.repo_id=${HF_USER}/smolvla_robocasa_CloseFridge \
|
|
--policy.load_vlm_weights=true \
|
|
--policy.push_to_hub=true \
|
|
--dataset.repo_id=pepijn223/robocasa_CloseFridge \
|
|
--env.type=robocasa \
|
|
--env.task=CloseFridge \
|
|
--output_dir=./outputs/smolvla_robocasa_CloseFridge \
|
|
--steps=100000 \
|
|
--batch_size=4 \
|
|
--eval_freq=5000 \
|
|
--eval.batch_size=1 \
|
|
--eval.n_episodes=5 \
|
|
--save_freq=10000
|
|
```
|
|
|
|
Evaluate the trained checkpoint on the same task:
|
|
|
|
```bash
|
|
lerobot-eval \
|
|
--policy.path=${HF_USER}/smolvla_robocasa_CloseFridge \
|
|
--env.type=robocasa \
|
|
--env.task=CloseFridge \
|
|
--eval.batch_size=1 \
|
|
--eval.n_episodes=20
|
|
```
|
|
|
|
## Multi-task evaluation
|
|
|
|
Evaluate across several tasks at once:
|
|
|
|
```bash
|
|
lerobot-eval \
|
|
--policy.path=your-policy-id \
|
|
--env.type=robocasa \
|
|
--env.task=CloseFridge,OpenBlenderLid,PickPlaceCoffee \
|
|
--eval.batch_size=1 \
|
|
--eval.n_episodes=20
|
|
```
|
|
|
|
Or run a full benchmark group:
|
|
|
|
```bash
|
|
lerobot-eval \
|
|
--policy.path=your-policy-id \
|
|
--env.type=robocasa \
|
|
--env.task=atomic_seen \
|
|
--eval.batch_size=1 \
|
|
--eval.n_episodes=20
|
|
```
|
|
|
|
- `--eval.batch_size` controls how many environments run in parallel.
|
|
- `--eval.n_episodes` sets how many episodes to run per task.
|
|
|
|
### Recommended evaluation episodes
|
|
|
|
For reproducible benchmarking, use **20 episodes per task**. This matches the protocol used in published results.
|