mirror of
https://github.com/k2-fsa/icefall.git
synced 2025-12-11 06:55:27 +00:00
14 lines
345 B
Bash
Executable File
14 lines
345 B
Bash
Executable File
#dl_dir=/DB/LibriSpeech_tar/vox
|
|
subset=$1
|
|
#dl_dir=/DB/LibriSpeech_tar/$subset
|
|
dl_dir=/home/work/workspace/LibriSpeech/vox_v3
|
|
|
|
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
|
|
./prompt_tuning.sh prompt_tuning_40_"$spk_id" $spk_id $subset
|
|
done
|
|
done
|