You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks everyone's great work and I had a trouble when I run aishell/v1 project.
In aishell/v1/local/aishell_data_prep.sh script, the author write this code:
# get all wavs' path
find $audio_dir -iname "*.wav"| grep -i "wav/train">$train_dir/wav.flist ||exit 1;# After some steps.....# get utt.list
sed -e 's/\.wav//'$dir/wav.flist | awk -F '/''{print( $NF)}'| sort >$dir/utt.list
# then few steps later, get wav.scp_all
paste -d''$dir/utt.list $dir/wav.flist >$dir/wav.scp_all
The wav.flist isn't sorted and utt.list is sorted, so I got a scp that wav isn't align with its path.
Thanks everyone's great work and I had a trouble when I run aishell/v1 project.
In
aishell/v1/local/aishell_data_prep.sh
script, the author write this code:The
wav.flist
isn't sorted andutt.list
is sorted, so I got a scp that wav isn't align with its path.In wav.scp_all:
And after I remove the sort step, I got a aligned scp file.
Is it a bug or I missed something? Thanks.
The text was updated successfully, but these errors were encountered: