from local

This commit is contained in:
dohe0342 2023-01-24 13:53:35 +09:00
parent 7946de8b3d
commit 0115d36775
2 changed files with 3 additions and 0 deletions

View File

@ -1569,10 +1569,13 @@ def run_adapter(rank, world_size, args, wb=None):
if params.hpo:
train_cuts = librispeech.train_clean_10_cuts(option=params.gender)
else:
'''
train_cuts = librispeech.train_clean_100_cuts(option=params.gender)
if params.full_libri:
train_cuts += librispeech.train_clean_360_cuts(option=params.gender)
train_cuts += librispeech.train_other_500_cuts(option=params.gender)
'''
train_cuts =
def remove_short_and_long_utt(c: Cut):
return 1.0 <= c.duration <= 20.0