docs: fix broken dataset script paths (datasets/v30 -> scripts) (#3695)

The docs pointed at src/lerobot/datasets/v30/, which does not exist.
Both scripts actually live in src/lerobot/scripts/:

- convert_dataset_v21_to_v30.py
- augment_dataset_quantile_stats.py

Updated the four references (one python -m module path and three
file-path invocations) to the correct location, matching each
script's own usage docstring.
This commit is contained in:
Jaimin
2026-06-03 08:48:19 -04:00
committed by GitHub
parent 741c2d0a39
commit d1b1c5c8cf
4 changed files with 4 additions and 4 deletions

View File

@@ -300,7 +300,7 @@ This replaces the old episode-per-file structure with efficient, optimally-sized
If you have existing datasets in v2.1 format, use the migration tool:
```bash
python src/lerobot/datasets/v30/convert_dataset_v21_to_v30.py \
python src/lerobot/scripts/convert_dataset_v21_to_v30.py \
--repo-id your_id/existing_dataset
```