README update

This commit is contained in:
Eren 2018-09-07 09:53:30 +02:00
parent c78ec7dc36
commit 28ef4a7acb
1 changed files with 34 additions and 25 deletions

View File

@ -58,35 +58,44 @@ You can also enjoy Tensorboard, if you point the Tensorboard argument```--logdir
Example ```config.json```: Example ```config.json```:
``` ```
{ {
"model_name": "my-model", // used in the experiment folder name "model_name": "TTS",
"num_mels": 80, "model_description": "what is going on with this model.",
"num_freq": 1025, "audio_processor": "audio", //audio or audio_lws
"sample_rate": 20000, "num_mels": 80,
"frame_length_ms": 50, "num_freq": 1025,
"frame_shift_ms": 12.5, "sample_rate": 22000,
"preemphasis": 0.97, "frame_length_ms": 50,
"min_level_db": -100, "frame_shift_ms": 12.5,
"ref_level_db": 20, "preemphasis": 0.97,
"embedding_size": 256, "min_level_db": -100,
"text_cleaner": "english_cleaners", "ref_level_db": 20,
"embedding_size": 256,
"text_cleaner": "english_cleaners",
"epochs": 1000, "num_loader_workers": 4,
"lr": 0.002,
"warmup_steps": 4000,
"batch_size": 32,
"eval_batch_size":32,
"r": 5,
"griffin_lim_iters": 60, "epochs": 1000,
"power": 1.5, "lr": 0.002,
"warmup_steps": 4000,
"lr_decay": 0.5,
"decay_step": 100000,
"batch_size": 32,
"eval_batch_size":-1,
"r": 5,
"num_loader_workers": 8, "griffin_lim_iters": 60,
"power": 1.5,
"checkpoint": true, "checkpoint": true,
"save_step": 376, "save_step": 25000,
"data_path": "/my/training/data/path", "print_step": 10,
"min_seq_len": 0, "run_eval": false,
"output_path": "/my/experiment/folder/path" "data_path": "root/path/to/your/data",
"meta_file_train": "metadata.csv",
"meta_file_val": null,
"dataset": "LJSpeech",
"min_seq_len": 0,
"output_path": "../keep/"
} }
``` ```