This commit is contained in:
Jade Choghari
2025-09-03 02:55:20 -04:00
parent 8f1679f309
commit a2958a8e0c
2 changed files with 5 additions and 2 deletions
+2
View File
@@ -19,6 +19,8 @@
title: Train RL in Simulation
- local: async
title: Use Async Inference
- local: libero
title: Evaluating with Libero
title: "Tutorials"
- sections:
- local: smolvla
+3 -2
View File
@@ -59,7 +59,7 @@ python src/lerobot/scripts/eval.py \
--eval.n_episodes=2
```
- Pass a comma-separated list to `-env.task` for multi-suite evaluation.
- Pass a comma-separated list to `--env.task` for multi-suite evaluation.
- Set `-env.multitask_eval=True` to enable evaluation across all tasks in those suites.
### Policy inputs and outputs
@@ -106,7 +106,8 @@ python src/lerobot/scripts/train.py \
--batch_size=4 \
--env.multitask_eval=True \
--eval.batch_size=1 \
--eval.n_episodes=1
--eval.n_episodes=1 \
--eval_freq=1000 \
```
---