parser.add_argument("--lr_decay",type=float,default=0.97,help='Learning rate decay every [test_step] epochs')
## Training and evaluation path/lists, save path
parser.add_argument('--train_list',type=str,default="/datasets/projects/ECAPA-TDNN-main/train_cut.txt",help='The path of the training list, https://www.robots.ox.ac.uk/~vgg/data/voxceleb/meta/train_list.txt')
parser.add_argument('--train_path',type=str,default="/datasets/datasets/voxceleb2/",help='The path of the training data, eg:"/data08/VoxCeleb2/train/wav" in my case')
parser.add_argument('--eval_list',type=str,default="/datasets/projects/ECAPA-TDNN-main/veri_test2.txt",help='The path of the evaluation list, veri_test2.txt comes from https://www.robots.ox.ac.uk/~vgg/data/voxceleb/meta/veri_test2.txt')
parser.add_argument('--eval_path',type=str,default="/datasets/datasets/voxceleb1/wav/",help='The path of the evaluation data, eg:"/data08/VoxCeleb1/test/wav" in my case')
parser.add_argument('--musan_path',type=str,default="/datasets/datasets/musan_split/",help='The path to the MUSAN set, eg:"/data08/Others/musan_split" in my case')
parser.add_argument('--rir_path',type=str,default="/datasets/datasets/RIRS_NOISES/simulated_rirs/",help='The path to the RIR set, eg:"/data08/Others/RIRS_NOISES/simulated_rirs" in my case');
parser.add_argument('--save_path',type=str,default="exps/exp1",help='Path to save the score.txt and models')
parser.add_argument('--initial_model',type=str,default="",help='Path of the initial_model')
## Model and Loss settings
parser.add_argument('--C',type=int,default=1024,help='Channel size for the speaker encoder')
parser.add_argument('--m',type=float,default=0.2,help='Loss margin in AAM softmax')
parser.add_argument('--s',type=float,default=30,help='Loss scale in AAM softmax')
parser.add_argument('--n_class',type=int,default=5994,help='Number of speakers')
## Command
parser.add_argument('--eval',dest='eval',action='store_true',help='Only do evaluation')
FastSpeech是基于Pytorch实现微软的文本到语音系统 [**FastSpeech 2: Fast and High-Quality End-to-End Text to Speech**](https://arxiv.org/abs/2006.04558v1)。这个项目是基于[FastSpeech](https://github.com/xcmyz/FastSpeech)的。