diff options
| -rw-r--r-- | .gitignore | 2 | ||||
| -rw-r--r-- | NOTES | 29 | ||||
| -rw-r--r-- | recipe/config_sr.json | 2 | ||||
| -rw-r--r-- | recipe/recipe.json | 6 |
4 files changed, 35 insertions, 4 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5ca0973 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +.DS_Store + @@ -0,0 +1,29 @@ +PYTHONPATH=`pwd` python scripts/extract_acoustic_feature.py \ + --input1_directory './data/mat-holly-24000/wav/holly' \ + --input2_directory './data/mat-holly-24000/wav/mat' \ + --output1_directory './data/mat-holly-24000/feat/holly' \ + --output2_directory './data/mat-holly-24000/feat/mat' + +parser.add_argument('--input1_directory', '-i1', type=Path) +parser.add_argument('--input2_directory', '-i2', type=Path) +parser.add_argument('--output1_directory', '-o1', type=Path) +parser.add_argument('--output2_directory', '-o2', type=Path) +parser.add_argument('--pre_converter1_config', type=Path) +parser.add_argument('--pre_converter1_model', type=Path) +parser.add_argument('--sample_rate', type=int, default=base_voice_param.sample_rate) +parser.add_argument('--top_db', type=float, default=base_voice_param.top_db) +parser.add_argument('--pad_second', type=float, default=base_voice_param.pad_second) +parser.add_argument('--frame_period', type=int, default=base_acoustic_feature_param.frame_period) +parser.add_argument('--order', type=int, default=base_acoustic_feature_param.order) +parser.add_argument('--alpha', type=float, default=base_acoustic_feature_param.alpha) +parser.add_argument('--f0_estimating_method', type=str, default=base_acoustic_feature_param.f0_estimating_method) +parser.add_argument('--f0_floor1', type=float, default=71) +parser.add_argument('--f0_ceil1', type=float, default=800) +parser.add_argument('--f0_floor2', type=float, default=71) +parser.add_argument('--f0_ceil2', type=float, default=800) +parser.add_argument('--ignore_feature', nargs='+', default=['spectrogram', 'aperiodicity']) +parser.add_argument('--disable_alignment', action='store_true') +parser.add_argument('--enable_overwrite', action='store_true') + + +PYTHONPATH=`pwd` /home/spawn/.virtualenv/yukarin/bin/python scripts/launch.py data/mat-holly-24000/conversion-net/
\ No newline at end of file diff --git a/recipe/config_sr.json b/recipe/config_sr.json index 06c5e47..3f290d9 100644 --- a/recipe/config_sr.json +++ b/recipe/config_sr.json @@ -24,7 +24,7 @@ }, "train": { "batchsize": 8, - "gpu": 1, + "gpu": -1, "log_iteration": 250, "snapshot_iteration": 5000 } diff --git a/recipe/recipe.json b/recipe/recipe.json index f0bc5d9..d3b8df1 100644 --- a/recipe/recipe.json +++ b/recipe/recipe.json @@ -20,9 +20,9 @@ ], "train/gpu": [ 0, - 1, - 2, - 3 + 0, + 0, + 0, ], "project/name": [ "pp-weakD-el8", |
