From de296b52e8e0716c84c0079cd84baed15b640e22 Mon Sep 17 00:00:00 2001 From: fanlai Date: Sun, 3 Sep 2023 01:18:25 -0500 Subject: [PATCH] [Dataset] Fix speech download path --- benchmark/dataset/download.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/benchmark/dataset/download.sh b/benchmark/dataset/download.sh index 3b5e224e..779972c4 100755 --- a/benchmark/dataset/download.sh +++ b/benchmark/dataset/download.sh @@ -49,13 +49,13 @@ speech() if [ ! -d "${DIR}/speech_commands/train/" ]; then echo "Downloading Speech Commands dataset(about 2.4GB)..." - wget -O ${DIR}/speech_commands/google_speech.tar.gz https://fedscale.eecs.umich.edu/dataset/google_speech.tar.gz + wget -O ${DIR}/google_speech.tar.gz https://fedscale.eecs.umich.edu/dataset/google_speech.tar.gz echo "Dataset downloaded, now decompressing..." - tar -xf ${DIR}/speech_commands/google_speech.tar.gz -C ${DIR} + tar -xf ${DIR}/google_speech.tar.gz -C ${DIR} echo "Removing compressed file..." - rm -f ${DIR}/speech_commands/google_speech.tar.gz + rm -f ${DIR}/google_speech.tar.gz echo -e "${GREEN}Speech Commands dataset downloaded!${NC}" else @@ -584,3 +584,4 @@ case "$1" in Help ;; esac +