diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-07-23 15:48:14 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-07-23 15:48:14 +0200 |
| commit | 6c34feb53b18c45829ff001edca2b6fa306c1429 (patch) | |
| tree | 6b630677ccea310293853b97f103309134d561ca /NOTES | |
| parent | f12508d660175f6a0870fc118a48589a3435abe9 (diff) | |
superres
Diffstat (limited to 'NOTES')
| -rw-r--r-- | NOTES | 25 |
1 files changed, 17 insertions, 8 deletions
@@ -30,8 +30,8 @@ parser.add_argument('--enable_overwrite', action='store_true') # TRAIN VOICE CONVERSION NETWORKS /home/spawn/.virtualenv/yukarin/bin/python train.py \ - ./20180719133105_2_holly_2_mat.json \ - ./data/mat-holly-24000/conversion-net/pp-el8-holly-2-mat + ./20180719133105.3.mat_2_holly.json \ + ./data/mat-holly-24000/conversion-net/pp-el0-holly-2-mat # OPTIONAL: TRAIN ON MULTIPLE GPUS USING RECIPE.JSON (RUNS MULTIPLE SCREENS) @@ -106,11 +106,20 @@ parser.add_argument('-g', '--gpu', type=int) +mkdir all +for i in *.wav +do + dir=${i%.*} + ../br_misc/split.sh $i 12 $dir + cd $dir + for j in *.wav + do + mv "$j" "${dir}_${j}" + done + cd .. + mv $i/* all +done - - - - - - +cd output/net/ +mkdir concat |
