parser.add_argument('--text',type=str,help='Text to speak.',default="The expressiveness of autoregressive transformers is literally nuts! I absolutely adore them.")
help='How to balance vocal diversity with the quality/intelligibility of the spoken text. 0 means highly diverse voice (not recommended), 1 means maximize intellibility',
parser.add_argument('--model_dir',type=str,help='Where to find pretrained model checkpoints. Tortoise automatically downloads these to .models, so this'
'should only be specified if you have custom checkpoints.',default='.models')
parser.add_argument('--seed',type=int,help='Random seed which can be used to reproduce results.',default=None)
parser.add_argument('--produce_debug_state',type=bool,help='Whether or not to produce debug_state.pth, which can aid in reproducing problems. Defaults to true.',default=True)