summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NOTES32
1 files changed, 31 insertions, 1 deletions
diff --git a/NOTES b/NOTES
index bf4f7d1..b9d89c5 100644
--- a/NOTES
+++ b/NOTES
@@ -1,3 +1,5 @@
+# EXTRACT ACOUSTIC FEATURES USING WORLD VOCODER
+
PYTHONPATH=`pwd` python scripts/extract_acoustic_feature.py \
--input1_directory './data/mat-holly-24000/wav/holly' \
--input2_directory './data/mat-holly-24000/wav/mat' \
@@ -25,5 +27,33 @@ parser.add_argument('--ignore_feature', nargs='+', default=['spectrogram', 'aper
parser.add_argument('--disable_alignment', action='store_true')
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
+
+# OPTIONAL: TRAIN ON MULTIPLE GPUS USING RECIPE.JSON (RUNS MULTIPLE SCREENS)
+
+PYTHONPATH=`pwd` /home/spawn/.virtualenv/yukarin/bin/python scripts/launch.py data/mat-holly-24000/conversion-net/
+
+# TEST VOICE CONVERSION NETWORKS
+
+PYTHONPATH=`pwd` /home/spawn/.virtualenv/yukarin/bin/python scripts/voice_conversion_test.py \
+ --model_directory /home/spawn/code/become-yukarin/data/mat-holly-24000/conversion-net/ \
+ --input_wave_directory /home/spawn/code/become-yukarin/data/mat-holly-24000/wav/mat/ \
+ --gpu 0 \
+ pp-el8-mat-2-holly
+
+PYTHONPATH=`pwd` /home/spawn/.virtualenv/yukarin/bin/python scripts/voice_conversion_test.py \
+ --model_directory /home/spawn/code/become-yukarin/data/mat-holly-24000/conversion-net/ \
+ --input_wave_directory /home/spawn/code/become-yukarin/data/mat-holly-24000/wav/holly/ \
+ --gpu 0 \
+ pp-el8-holly-2-mat
-PYTHONPATH=`pwd` /home/spawn/.virtualenv/yukarin/bin/python scripts/launch.py data/mat-holly-24000/conversion-net/ \ No newline at end of file
+parser.add_argument('model_names', nargs='+')
+parser.add_argument('-md', '--model_directory', type=Path, default=Path('/mnt/dwango/hiroshiba/become-yukarin/'))
+parser.add_argument('-iwd', '--input_wave_directory', type=Path,
+ default=Path('/mnt/dwango/hiroshiba/become-yukarin/dataset/hiho-wave/hiho-pause-atr503-subset/'))
+parser.add_argument('-it', '--iteration', type=int)
+parser.add_argument('-g', '--gpu', type=int)