parser.add_argument('-opt',type=str,help='Path to options YAML file used to train the diffusion model',default='X:\\dlas\\experiments\\train_diffusion_tts_medium\\train_diffusion_tts_medium.yml')
parser.add_argument('-diffusion_model_path',type=str,help='Path to saved model weights',default='X:\\dlas\\experiments\\train_diffusion_tts_medium\\models\\38500_generator_ema.pth')
parser.add_argument('-aligned_codes',type=str,help='Comma-delimited list of integer codes that defines text & prosody. Get this by apply W2V to an existing audio clip or from a bespoke generator.',
default='0,0,0,0,10,10,0,4,0,7,0,17,4,4,0,25,5,0,13,13,0,22,4,4,0,21,15,15,7,0,0,14,4,4,6,8,4,4,0,0,12,5,0,0,5,0,4,4,22,22,8,16,16,0,4,4,4,0,0,0,0,0,0,0')# Default: 'i am very glad to see you', libritts/train-clean-100/103/1241/103_1241_000017_000001.wav.
parser.add_argument('-cond',type=str,help='Path to the conditioning input audio file.',default='Y:\\clips\\books1\\754_Dan Simmons - The Rise Of Endymion 356 of 450\\00026.wav')
parser.add_argument('-diffusion_steps',type=int,help='Number of diffusion steps to perform to create the generate. Lower steps reduces quality, but >40 is generally pretty good.',default=100)
parser.add_argument('-output_path',type=str,help='Where to store outputs.',default='../results/use_diffuse_tts')