summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2018-07-19 12:56:53 +0200
committerJules Laplace <julescarbon@gmail.com>2018-07-19 12:56:53 +0200
commitba2c88ab0d0d6bd236609cd4a1835717252f4c93 (patch)
treea378d9d35e9d1df708b67a706659bf01ca2ebbeb
parent28ac97d901edb31ab72f103bc65c8763d0a8779e (diff)
scriptz
-rw-r--r--recipe/config.json14
-rw-r--r--scripts/launch.py2
2 files changed, 8 insertions, 8 deletions
diff --git a/recipe/config.json b/recipe/config.json
index a559299..f6b2b31 100644
--- a/recipe/config.json
+++ b/recipe/config.json
@@ -4,18 +4,18 @@
"f0",
"mfcc"
],
- "input_glob": "/hiho-pause/hiho-pause-atr-*.npy",
+ "input_glob": "./data/mat-holly-24000/feat/mat/voice_*.npy",
"input_global_noise": 0.01,
"input_local_noise": 0.01,
- "input_mean_path": "/hiho-pause/mean.npy",
- "input_var_path": "/hiho-pause/var.npy",
+ "input_mean_path": "./data/mat-holly-24000/feat/mat/mean.npy",
+ "input_var_path": "./data/mat-holly-24000/feat/mat/var.npy",
"num_test": 1,
"seed": 0,
- "target_glob": "/yukari-pause/yukari-pause-atr-*.npy",
+ "target_glob": "./data/mat-holly-24000/feat/holly/voice_*.npy",
"target_global_noise": 0.01,
"target_local_noise": 0.01,
- "target_mean_path": "/yukari-pause/mean.npy",
- "target_var_path": "/yukari-pause/var.npy",
+ "target_mean_path": "./data/mat-holly-24000/feat/holly/mean.npy",
+ "target_var_path": "./data/mat-holly-24000/feat/holly/var.npy",
"train_crop_size": 512
},
"loss": {
@@ -32,7 +32,7 @@
"weak_discriminator": false
},
"project": {
- "name": "",
+ "name": "mat-holly-24000",
"tags": []
},
"train": {
diff --git a/scripts/launch.py b/scripts/launch.py
index 3186161..0dcd22f 100644
--- a/scripts/launch.py
+++ b/scripts/launch.py
@@ -13,7 +13,7 @@ from pathlib import Path
base_command_default = \
"screen -d -m -S {project/name}_gpu{train/gpu} ;" + \
- "screen -S {project/name}_gpu{train/gpu} -X stuff 'python3 {python_file_path} {recipe_path} {output}\n'"
+ "screen -S {project/name}_gpu{train/gpu} -X stuff '/home/spawn/.virtualenv/yukarin/bin/python {python_file_path} {recipe_path} {output}\n'"
parser = argparse.ArgumentParser()
parser.add_argument('output_dir', type=Path)