Merge pull request #146 from microsoft/v5dnschallenge_ICASSP2023

added baseline clips and paralinguistic training data
This commit is contained in:
hdubey 2022-12-13 12:40:50 -08:00 коммит произвёл GitHub
Родитель d2372e06dc 252977b09a
Коммит c14df5a6a7
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
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"