Skip to content

Instantly share code, notes, and snippets.

@acetylSv
Created May 8, 2018 08:22
Show Gist options
  • Save acetylSv/4de599d74702d0986c20391611f88cba to your computer and use it in GitHub Desktop.
Save acetylSv/4de599d74702d0986c20391611f88cba to your computer and use it in GitHub Desktop.
a script to download Blizzard2013 datasets
# For downloading The English audiobook data for the Blizzard Challenge 2013
# Step1. Read and Accept License at http://www.cstr.ed.ac.uk/projects/blizzard/2013/lessac_blizzard2013/license.html
# Step2. Get Username and Password through email.
# Step3. Insert Username and Password below and run this script.
name=''
pass=''
dl="wget --user ${name} --password ${pass}"
baseurl='http://data.cstr.ed.ac.uk/blizzard2013/lessac'
parts='BlackBeauty.zip
Lessac_Blizzard2013_CatherineByers_train.tar.bz2
mansfield1.zip mansfield2.zip mansfield3.zip
pride_and_prejudice1.zip pride_and_prejudice2.zip pride_and_prejudice3.zip
README_for_Lessac_Blizzard2013_CatherineByers_train
training_inventory.xls'
for part in $parts; do
$dl $baseurl/$part
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment