from local

This commit is contained in:
dohe0342 2023-03-13 15:42:20 +09:00
parent c1179c0d2b
commit 54ff4ef2f4
3 changed files with 12 additions and 0 deletions

Binary file not shown.

View File

@ -151,3 +151,15 @@ if [ $stage -le 4 ] && [ $stop_stage -ge 4 ]; then
#touch data/fbank/.musan.done
fi
fi
if [ $stage -le 5 ] && [ $stop_stage -ge 5 ]; then
log "Stage 5: Generate pseudo label"
# We assume that you have downloaded the musan corpus
# to data/musan
mkdir -p data/manifests
if [ ! -e data/manifests/.musan.done ]; then
lhotse prepare musan $dl_dir/musan data/manifests
touch data/manifests/.musan.done
fi
fi