TTS/server/conf.json

15 lines
708 B
JSON
Raw Normal View History

2018-06-05 12:15:48 +00:00
{
"tts_path":"/media/erogol/data_ssd/Models/libri_tts/5049/", // tts model root folder
2019-07-22 13:10:06 +00:00
"tts_file":"best_model.pth.tar", // tts checkpoint file
2019-04-15 14:13:33 +00:00
"tts_config":"config.json", // tts config.json file
2019-07-22 13:10:06 +00:00
"tts_speakers": null, // json file listing speaker ids. null if no speaker embedding.
"wavernn_lib_path": null, // Rootpath to wavernn project folder to be imported. If this is null, model uses GL for speech synthesis.
"wavernn_path":null, // wavernn model root path
"wavernn_file":null, // wavernn checkpoint file name
"wavernn_config": null, // wavernn config file
2019-04-15 14:13:33 +00:00
"is_wavernn_batched":true,
"port": 5002,
2019-04-18 15:35:20 +00:00
"use_cuda": true,
"debug": true
}