parser.add_argument('--tts_checkpoint',type=str,help='path to TTS checkpoint file')
parser.add_argument('--tts_config',type=str,help='path to TTS config.json file')
parser.add_argument('--tts_speakers',type=str,help='path to JSON file containing speaker ids, if speaker ids are used in the model')
parser.add_argument('--wavernn_lib_path',type=str,help='path to WaveRNN project folder to be imported. If this is not passed, model uses Griffin-Lim for synthesis.')
parser.add_argument('--wavernn_file',type=str,help='path to WaveRNN checkpoint file.')
parser.add_argument('--wavernn_config',type=str,help='path to WaveRNN config file.')
parser.add_argument('--is_wavernn_batched',type=convert_boolean,default=False,help='true to use batched WaveRNN.')
parser.add_argument('--port',type=int,default=5002,help='port to listen on.')
parser.add_argument('--use_cuda',type=convert_boolean,default=False,help='true to use CUDA.')
parser.add_argument('--debug',type=convert_boolean,default=False,help='true to enable Flask debug mode.')