From 207183c2f8ded58c0eba61828e6f240393991ed4 Mon Sep 17 00:00:00 2001 From: saime428 <51110572+saime428@users.noreply.github.com> Date: Wed, 29 Jul 2026 04:21:12 -1000 Subject: [PATCH] docs: fix dataset split fraction example (#3936) * docs: fix dataset split fraction example * docs: preserve three-way dataset split example --------- Co-authored-by: saime <2286263079@qq.com> Co-authored-by: Steven Palma --- docs/source/using_dataset_tools.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/using_dataset_tools.mdx b/docs/source/using_dataset_tools.mdx index 3ddc320a5..cb8225fd1 100644 --- a/docs/source/using_dataset_tools.mdx +++ b/docs/source/using_dataset_tools.mdx @@ -50,11 +50,11 @@ lerobot-edit-dataset \ Divide a dataset into multiple subsets. ```bash -# Split by fractions (e.g. 80% train, 20% test, 20% val) +# Split by fractions (e.g. 60% train, 20% val, 20% test) lerobot-edit-dataset \ --repo_id lerobot/pusht \ --operation.type split \ - --operation.splits '{"train": 0.8, "test": 0.2, "val": 0.2}' + --operation.splits '{"train": 0.6, "val": 0.2, "test": 0.2}' # Split by specific episode indices lerobot-edit-dataset \