From ca359727bcc326b7008f559b796b857dbeb68ba7 Mon Sep 17 00:00:00 2001 From: erogol Date: Wed, 20 May 2020 12:30:06 +0200 Subject: [PATCH] config update and change default debug mode --- config.json | 6 +++--- train.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/config.json b/config.json index 1180c12a..03907fb0 100644 --- a/config.json +++ b/config.json @@ -118,10 +118,10 @@ "max_seq_len": 153, // DATASET-RELATED: maximum text length // PATHS - "output_path": "/data/rw/home/Trainings/", + "output_path": "/home/erogol/Models/LJSpeech/", // PHONEMES - "phoneme_cache_path": "/root/mozilla_us_phonemes_3", // phoneme computation is slow, therefore, it caches results in the given folder. + "phoneme_cache_path": "/media/erogol/data_ssd2/mozilla_us_phonemes_3", // phoneme computation is slow, therefore, it caches results in the given folder. "use_phonemes": false, // use phonemes instead of raw characters. It is suggested for better pronounciation. "phoneme_language": "en-us", // depending on your target language, pick one from https://github.com/bootphon/phonemizer#languages @@ -135,7 +135,7 @@ [ { "name": "ljspeech", - "path": "/root/LJSpeech-1.1/", + "path": "/home/erogol/Data/LJSpeech-1.1/", "meta_file_train": "metadata.csv", "meta_file_val": null } diff --git a/train.py b/train.py index 8ff768f0..e4963ee7 100644 --- a/train.py +++ b/train.py @@ -619,7 +619,7 @@ if __name__ == '__main__': ) parser.add_argument('--debug', type=bool, - default=True, + default=False, help='Do not verify commit integrity to run training.') # DISTRUBUTED