forked from MlWoo/LPCNet
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update readme and prepare to work with Tacotron2
- Loading branch information
吴梦林
authored and
吴梦林
committed
Jan 11, 2019
1 parent
37c151c
commit 7f17e2b
Showing
7 changed files
with
61 additions
and
3 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
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,6 @@ | ||
# Place in 16k-LP7 from TSPSpeech.iso and run to concatenate wave files | ||
# into one headerless training file | ||
for i in mandarin_female/wavs/*.s16 | ||
do | ||
./dump_data -test $i mandarin_female/feature_extract/${i##*/}.f32 | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# Place in 16k-LP7 from TSPSpeech.iso and run to concatenate wave files | ||
# into one headerless training file | ||
for i in /data/dataset/mandarin_female/wavs/*.wav | ||
do | ||
sox $i -r 16000 -c 1 -t sw - > mandarin_female/wavs/${i##*/}.s16 | ||
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
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,3 @@ | ||
#!/bin/bash | ||
CUDA_VISIBLE_DEVICES=$1 python train_lpcnet.py ../yl_features.f32 ../yl_data.u8 | ||
|