Rudimentary tkinter app to speed up tagging/transcribing training data for tacotron
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/sh
|
|
|
|
wget -O dataset.tar --content-disposition --user-agent "macintosh" https://cloud.technicalincompetence.club/index.php/s/W8rLGrCKgrFXw8z/download
|
|
tar -xvf dataset.tar
|
|
mkdir -p dataset/in
|
|
mv wavs/out/* dataset/in/
|
|
rm -rf wavs
|
|
|
|
mkdir -p dataset/out
|
|
mkdir -p dataset/discard
|