config update and change default debug mode

This commit is contained in:
erogol 2020-05-20 12:30:06 +02:00
parent 1835628335
commit ca359727bc
2 changed files with 4 additions and 4 deletions

View File

@ -118,10 +118,10 @@
"max_seq_len": 153, // DATASET-RELATED: maximum text length "max_seq_len": 153, // DATASET-RELATED: maximum text length
// PATHS // PATHS
"output_path": "/data/rw/home/Trainings/", "output_path": "/home/erogol/Models/LJSpeech/",
// PHONEMES // 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. "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 "phoneme_language": "en-us", // depending on your target language, pick one from https://github.com/bootphon/phonemizer#languages
@ -135,7 +135,7 @@
[ [
{ {
"name": "ljspeech", "name": "ljspeech",
"path": "/root/LJSpeech-1.1/", "path": "/home/erogol/Data/LJSpeech-1.1/",
"meta_file_train": "metadata.csv", "meta_file_train": "metadata.csv",
"meta_file_val": null "meta_file_val": null
} }

View File

@ -619,7 +619,7 @@ if __name__ == '__main__':
) )
parser.add_argument('--debug', parser.add_argument('--debug',
type=bool, type=bool,
default=True, default=False,
help='Do not verify commit integrity to run training.') help='Do not verify commit integrity to run training.')
# DISTRUBUTED # DISTRUBUTED