From 17390ed90a7eb492d9cfb6dff4b70beb684b8a46 Mon Sep 17 00:00:00 2001 From: Yihong Xu Date: Fri, 6 Feb 2026 14:35:21 +0100 Subject: [PATCH 1/2] Fix array syntax for splits in download_hf.sh --- tools/download_hf.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/download_hf.sh b/tools/download_hf.sh index 2b7426c..b4fd9da 100644 --- a/tools/download_hf.sh +++ b/tools/download_hf.sh @@ -5,7 +5,7 @@ repo_fut="https://huggingface.co/datasets/OpenDriveLab-org/SimScale/resolve/main # 1. simulation data with planner-based pseudo-expert rounds=5 -splits=(66,56,47,39,33) +splits=(66 56 47 39 33) for round in $(seq 0 $((rounds - 1))); do # 1. meta data @@ -63,4 +63,4 @@ for round in $(seq 0 $((rounds - 1))); do rm simscale_recovery_v1.0-${round}_sensor_blobs_fut_${idx}.tar.gz done -done \ No newline at end of file +done From 84b8166555f696ca695aa528424fcbe107d325f9 Mon Sep 17 00:00:00 2001 From: Yihong Xu Date: Fri, 6 Feb 2026 14:35:40 +0100 Subject: [PATCH 2/2] Update splits array format in download_ms.sh Changed the splits array format from comma-separated to space-separated. --- tools/download_ms.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/download_ms.sh b/tools/download_ms.sh index 180fb55..10e43fc 100644 --- a/tools/download_ms.sh +++ b/tools/download_ms.sh @@ -7,7 +7,7 @@ repo=OpenDriveLab/SimScale # 1. simulation data with planner-based pseudo-expert rounds=5 -splits=(66,56,47,39,33) +splits=(66 56 47 39 33) simscale_pdm_v1.0-0_sensor_blobs_fut_9.tar.gz for round in $(seq 0 $((rounds - 1))); do # 1. meta data @@ -65,4 +65,4 @@ for round in $(seq 0 $((rounds - 1))); do rm simscale_recovery_v1.0-${round}_sensor_blobs_fut_${idx}.tar.gz done -done \ No newline at end of file +done