Skip to content

Commit

Permalink
Update prepare_data.sh (#638)
Browse files Browse the repository at this point in the history
In line 13, 'n_src' is string not variable. So, 'n_src' should chance to '$n_src'.
  • Loading branch information
mystlee authored Aug 11, 2022
1 parent fc0967a commit 8048880
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion egs/librimix/ConvTasNet/local/prepare_data.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ if [[ $n_src -le 1 ]]
then
changed_n_src=2
else
changed_n_src=n_src
changed_n_src=$n_src
fi

$python_path local/create_local_metadata.py --librimix_dir $storage_dir/Libri$changed_n_src"Mix"
Expand Down

0 comments on commit 8048880

Please sign in to comment.