from local

This commit is contained in:
dohe0342 2023-03-15 02:59:14 +09:00
parent 3ef9f5be7b
commit 43fa35b9cb
2 changed files with 2 additions and 4 deletions

Binary file not shown.

View File

@ -1,11 +1,9 @@
dl_dir=/DB/LibriSpeech_tar/vox
for dest in "test-clean" "test-other"; do
for dest in "test-other"; do
for spk in $dl_dir/$dest/*; do
spk_id=${spk#*$dest\/}
echo $spk_id
if [ $spk_id -ne 1089 ]; then
./run_adapter.sh "$spk_id"_adapter $spk_id
fi
./run_adapter.sh "$spk_id"_adapter $spk_id
done
done