forked from ftshijt/LibriMix
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from s3prl/less-data-preparation-time
less data preparation time
- Loading branch information
Showing
3 changed files
with
87 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
#!/bin/bash | ||
set -eu # Exit on error | ||
|
||
storage_dir=$1 | ||
librispeech_dir=$storage_dir/LibriSpeech | ||
wham_dir=$storage_dir/wham_noise | ||
librimix_outdir=$storage_dir/ | ||
|
||
function LibriSpeech_dev_clean() { | ||
if ! test -e $librispeech_dir/dev-clean; then | ||
echo "Download LibriSpeech/dev-clean into $storage_dir" | ||
# If downloading stalls for more than 20s, relaunch from previous state. | ||
wget -c --tries=0 --read-timeout=20 http://www.openslr.org/resources/12/dev-clean.tar.gz -P $storage_dir | ||
tar -xzf $storage_dir/dev-clean.tar.gz -C $storage_dir | ||
rm -rf $storage_dir/dev-clean.tar.gz | ||
fi | ||
} | ||
|
||
function LibriSpeech_test_clean() { | ||
if ! test -e $librispeech_dir/test-clean; then | ||
echo "Download LibriSpeech/test-clean into $storage_dir" | ||
# If downloading stalls for more than 20s, relaunch from previous state. | ||
wget -c --tries=0 --read-timeout=20 http://www.openslr.org/resources/12/test-clean.tar.gz -P $storage_dir | ||
tar -xzf $storage_dir/test-clean.tar.gz -C $storage_dir | ||
rm -rf $storage_dir/test-clean.tar.gz | ||
fi | ||
} | ||
|
||
function LibriSpeech_clean100() { | ||
if ! test -e $librispeech_dir/train-clean-100; then | ||
echo "Download LibriSpeech/train-clean-100 into $storage_dir" | ||
# If downloading stalls for more than 20s, relaunch from previous state. | ||
wget -c --tries=0 --read-timeout=20 http://www.openslr.org/resources/12/train-clean-100.tar.gz -P $storage_dir | ||
tar -xzf $storage_dir/train-clean-100.tar.gz -C $storage_dir | ||
rm -rf $storage_dir/train-clean-100.tar.gz | ||
fi | ||
} | ||
|
||
function LibriSpeech_clean360() { | ||
if ! test -e $librispeech_dir/train-clean-360; then | ||
echo "Download LibriSpeech/train-clean-360 into $storage_dir" | ||
# If downloading stalls for more than 20s, relaunch from previous state. | ||
wget -c --tries=0 --read-timeout=20 http://www.openslr.org/resources/12/train-clean-360.tar.gz -P $storage_dir | ||
tar -xzf $storage_dir/train-clean-360.tar.gz -C $storage_dir | ||
rm -rf $storage_dir/train-clean-360.tar.gz | ||
fi | ||
} | ||
|
||
function wham() { | ||
if ! test -e $wham_dir; then | ||
echo "Download wham_noise into $storage_dir" | ||
# If downloading stalls for more than 20s, relaunch from previous state. | ||
wget -c --tries=0 --read-timeout=20 https://storage.googleapis.com/whisper-public/wham_noise.zip -P $storage_dir | ||
unzip -qn $storage_dir/wham_noise.zip -d $storage_dir | ||
rm -rf $storage_dir/wham_noise.zip | ||
fi | ||
} | ||
|
||
LibriSpeech_dev_clean & | ||
LibriSpeech_test_clean & | ||
LibriSpeech_clean100 & | ||
wham & | ||
|
||
wait | ||
|
||
# Path to python | ||
python_path=python | ||
|
||
# If you wish to rerun this script in the future please comment this line out. | ||
$python_path scripts/augment_train_noise.py --wham_dir $wham_dir | ||
|
||
for n_src in 2; do | ||
metadata_dir=metadata/Libri$n_src"Mix" | ||
$python_path scripts/create_librimix_from_metadata.py --librispeech_dir $librispeech_dir \ | ||
--wham_dir $wham_dir \ | ||
--metadata_dir $metadata_dir \ | ||
--librimix_outdir $librimix_outdir \ | ||
--n_src $n_src \ | ||
--freqs 16k \ | ||
--modes min \ | ||
--types mix_clean | ||
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters