from local

This commit is contained in:
dohe0342 2023-03-13 13:43:21 +09:00
parent b90f67d469
commit 2133def81c
3 changed files with 3 additions and 1 deletions

View File

@ -88,7 +88,9 @@ if [ $stage -le 1 ] && [ $stop_stage -ge 1 ]; then
# log "Resampling $dset done" # log "Resampling $dset done"
#done #done
for dest in "test-clean" "test-other"; do for dest in "test-clean" "test-other"; do
python local/prepare_vox_text.py $dl_dir/$dest for spk in $dl_dir/$dest/*; do
python local/prepare_vox_text.py $dl_dir/$dest/$spk
done
done done
#touch $dl_dir/vox/.vox.done #touch $dl_dir/vox/.vox.done
fi fi