-
I am currently trying the asr tutorial, particularly, 10_ASR_CTC_Language_Finetuning. I decided to try the standard, larger (500 hrs) CSJ corpus. Replaced the data manifests carefully. In the first training cell, it ran for about 10 minutes before showing me this error that I have no idea how to troubleshoot. Update: I used the commented additional values for the specAug configuration:
and this changed the error to: The original log is below:
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 7 replies
-
Update 2: The training seems to be running smoothly now. |
Beta Was this translation helpful? Give feedback.
-
I have question related Conformer SpecAugment I see we use 'spec_augment': {
'_target_': 'nemo.collections.asr.modules.SpectrogramAugmentation',
'freq_masks': 2,
'time_masks': 10,
'freq_width': 27,
'time_width': 0.05
}, Does this actually work? Do you apply SpecAug to all the training datapoints? Or Are there any trick to this while applying? So far I haven't got success with SpecAug. Any tips can be helpful |
Beta Was this translation helpful? Give feedback.
Update 2: The training seems to be running smoothly now.
I just removed all rectangular masks and went with the time-frequency-based ones.