from local

This commit is contained in:
dohe0342 2023-01-27 16:35:35 +09:00
parent 592cc41ceb
commit 7ddf5cd1c2
3 changed files with 2 additions and 2 deletions

View File

@ -76,7 +76,7 @@ if [ $stage -le 1 ] && [ $stop_stage -ge 1 ]; then
# |-- metadata.csv # |-- metadata.csv
# to $dl_dir/LJSpeech # to $dl_dir/LJSpeech
if [ ! -e $dl_dir/LJSpeech/.LJSpeech.done ]; then if [ ! -e $dl_dir/user/.user.done ]; then
for dset in "4446"; do for dset in "4446"; do
log "Resampling $dset set" log "Resampling $dset set"
file_list=`ls $dl_dir/$dset/` file_list=`ls $dl_dir/$dset/`
@ -86,7 +86,7 @@ if [ $stage -le 1 ] && [ $stop_stage -ge 1 ]; then
done done
log "Resampling $dset done" log "Resampling $dset done"
done done
python local/prepare_LJSpeech_text.py $dl_dir/LJSpeech/metadata.csv python local/prepare_LJSpeech_text.py $dl_dir/
touch $dl_dir/LJSpeech/.LJSpeech.done touch $dl_dir/LJSpeech/.LJSpeech.done
fi fi