akhaliq3
spaces demo
2b7bf83
raw
history blame contribute delete
925 Bytes
#!/bin/bash
# Copyright 2020 Tomoki Hayashi
# MIT License (https://opensource.org/licenses/MIT)
download_dir=$1
# check arguments
if [ $# != 1 ]; then
echo "Usage: $0 <download_dir>"
exit 1
fi
set -euo pipefail
cwd=$(pwd)
if [ ! -e "${download_dir}/VCTK-Corpus" ]; then
mkdir -p "${download_dir}"
cd "${download_dir}" || exit 1;
wget http://www.udialogue.org/download/VCTK-Corpus.tar.gz
tar xvzf ./VCTK-Corpus.tar.gz
rm ./VCTK-Corpus.tar.gz
cd "${cwd}" || exit 1;
echo "Successfully downloaded data."
else
echo "Already exists. Skipped."
fi
if [ ! -e "${download_dir}/VCTK-Corpus/lab" ]; then
cd "${download_dir}" || exit 1;
git clone https://github.com/kan-bayashi/VCTKCorpusFullContextLabel.git
cp -r VCTKCorpusFullContextLabel/lab ./VCTK-Corpus
cd "${cwd}" || exit 1;
echo "Successfully downloaded label data."
else
echo "Already exists. Skipped."
fi