From 6646c3b1c5f43904bf341150266d26d04a394565 Mon Sep 17 00:00:00 2001 From: Xuesong Yang <1646669+XuesongYang@users.noreply.github.com> Date: Mon, 29 Jan 2024 15:46:28 -0800 Subject: [PATCH] [tutorial] fixed missing RIR scripts file. (#8257) Signed-off-by: Xuesong Yang <1646669+XuesongYang@users.noreply.github.com> --- tutorials/asr/Online_Noise_Augmentation.ipynb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tutorials/asr/Online_Noise_Augmentation.ipynb b/tutorials/asr/Online_Noise_Augmentation.ipynb index e24d57cf65790..9011fd7466ff7 100644 --- a/tutorials/asr/Online_Noise_Augmentation.ipynb +++ b/tutorials/asr/Online_Noise_Augmentation.ipynb @@ -752,8 +752,9 @@ "source": [ "# This is where the rir data will be downloaded.\n", "# Change this if you don't want the data to be extracted in the current directory.\n", + "!wget https://raw.githubusercontent.com/NVIDIA/NeMo/$BRANCH/scripts/dataset_processing/get_openslr_rir_data.py\n", "rir_data_path = '.'\n", - "!python ../../scripts/dataset_processing/get_openslr_rir_data.py --data_root {rir_data_path}\n", + "!python get_openslr_rir_data.py --data_root {rir_data_path}\n", "rir_manifest_path = os.path.join(rir_data_path, 'processed', 'rir.json')\n", "!head -n 3 {rir_manifest_path}" ]