added baseline clips and paralinguistic training data

This commit is contained in:
Hari Dubey 2022-12-13 20:39:46 +00:00
Родитель d2372e06dc
Коммит 252977b09a
2 изменённых файлов: 38 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1,19 @@
#!/usr/bin/bash
# ***** Dev Testset for 5th DNS Challenge at ICASSP 2023*****
# NOTE: Before downloading, make sure you have enough space
# on your local storage!
# Zip file is 1.4 GB.
# -------------------------------------------------------------
URL="https://dnschallengepublic.blob.core.windows.net/dns5archive/Baseline.zip"
echo "Download: $URL"
#
# DRY RUN: print HTTP header WITHOUT downloading the files
curl -s -I "$URL"
#
# Actually download the archive - UNCOMMENT it when ready to download
curl https://dnschallengepublic.blob.core.windows.net/dns5archive/Baseline.zip --output 'Baseline.zip'
#wget --no-check-certificate "$URL"

Просмотреть файл

@ -0,0 +1,19 @@
#!/usr/bin/bash
# ***** Dev Testset for 5th DNS Challenge at ICASSP 2023*****
# NOTE: Before downloading, make sure you have enough space
# on your local storage!
# Zip file is 181.8 MB.
# -------------------------------------------------------------
URL="https://dnschallengepublic.blob.core.windows.net/dns5archive/V5_training_dataset/paralinguistic_training.zip"
echo "Download: $URL"
#
# DRY RUN: print HTTP header WITHOUT downloading the files
curl -s -I "$URL"
#
# Actually download the archive - UNCOMMENT it when ready to download
curl https://dnschallengepublic.blob.core.windows.net/dns5archive/V5_training_dataset/paralinguistic_training.zip --output 'paralinguistic_training.zip'
#wget --no-check-certificate "$URL"