diff --git a/egs/librispeech/ASR/pruned_transducer_stateless_d2v_v2/.train_adapter.py.swp b/egs/librispeech/ASR/pruned_transducer_stateless_d2v_v2/.train_adapter.py.swp index a4ec1b0e3..01a19d3f3 100644 Binary files a/egs/librispeech/ASR/pruned_transducer_stateless_d2v_v2/.train_adapter.py.swp and b/egs/librispeech/ASR/pruned_transducer_stateless_d2v_v2/.train_adapter.py.swp differ diff --git a/egs/librispeech/ASR/pruned_transducer_stateless_d2v_v2/train_adapter.py b/egs/librispeech/ASR/pruned_transducer_stateless_d2v_v2/train_adapter.py index 027923598..5f6452ff1 100755 --- a/egs/librispeech/ASR/pruned_transducer_stateless_d2v_v2/train_adapter.py +++ b/egs/librispeech/ASR/pruned_transducer_stateless_d2v_v2/train_adapter.py @@ -1551,10 +1551,10 @@ def run_adapter(rank, world_size, args, wb=None): librispeech = LibriSpeechAsrDataModule(args) - train_cuts = librispeech.train_clean_100_cuts(option='male') + train_cuts = librispeech.train_clean_100_cuts(option=params.gender) if params.full_libri: - train_cuts += librispeech.train_clean_360_cuts(option='male') - train_cuts += librispeech.train_other_500_cuts(option='male') + train_cuts += librispeech.train_clean_360_cuts(option=params.gender) + train_cuts += librispeech.train_other_500_cuts(option=params.gender) def remove_short_and_long_utt(c: Cut): return 1.0 <= c.duration <= 20.0