Fix to num_feature_masks bug I introduced; reduce max_frames_mask_fraction 0.4->0.3

This commit is contained in:
Daniel Povey 2022-02-09 12:02:19 +08:00
parent bd36216e8c
commit dd19a6a2b1

View File

@ -220,9 +220,9 @@ class LibriSpeechAsrDataModule:
time_warp_factor=self.args.spec_aug_time_warp_factor, time_warp_factor=self.args.spec_aug_time_warp_factor,
num_frame_masks=10, num_frame_masks=10,
features_mask_size=27, features_mask_size=27,
num_feature_masks=10, num_feature_masks=2,
frames_mask_size=100, frames_mask_size=100,
max_frames_mask_fraction=0.4, max_frames_mask_fraction=0.3,
) )
) )
else: else: