| | |
| | | default="validation", |
| | | help="dev dataset", |
| | | ) |
| | | |
| | | parser.add_argument( |
| | | "--data_file_names", |
| | | type=str, |
| | | default="wav.scp,text", |
| | | help="input data files", |
| | | ) |
| | | parser.add_argument( |
| | | "--speed_perturb", |
| | | type=float, |
| | | nargs="+", |
| | | default=None, |
| | | help="speed perturb", |
| | | ) |
| | | parser.add_argument( |
| | | "--use_preprocessor", |
| | | type=str2bool, |
| | | default=True, |
| | | help="Apply preprocessing to data or not", |
| | | ) |
| | | parser.add_argument( |
| | | "--embed_path", |
| | | type=str, |
| | | default=None, |
| | | help="for model which requires embeds", |
| | | ) |
| | | |
| | | # optimization related |
| | | parser.add_argument( |