diff --git a/egs/librispeech/ASR/pruned_transducer_stateless_d2v_v2/.data2vec_audio.py.swp b/egs/librispeech/ASR/pruned_transducer_stateless_d2v_v2/.data2vec_audio.py.swp index dd04d7d1e..591c7ff5c 100644 Binary files a/egs/librispeech/ASR/pruned_transducer_stateless_d2v_v2/.data2vec_audio.py.swp and b/egs/librispeech/ASR/pruned_transducer_stateless_d2v_v2/.data2vec_audio.py.swp differ diff --git a/egs/librispeech/ASR/pruned_transducer_stateless_d2v_v2/data2vec_audio.py b/egs/librispeech/ASR/pruned_transducer_stateless_d2v_v2/data2vec_audio.py index aca3e34ac..32b06f290 100644 --- a/egs/librispeech/ASR/pruned_transducer_stateless_d2v_v2/data2vec_audio.py +++ b/egs/librispeech/ASR/pruned_transducer_stateless_d2v_v2/data2vec_audio.py @@ -497,6 +497,7 @@ class Data2VecAudioModel(BaseFairseqModel): features = torch.cat([prompt, features], dim=1) print(features.size()) prompt_padding_mask = torch.zeros(prompt.size()).type(torch.BoolTensor).to(features.device) + print(prompt_padding_mask.size()) padding_mask = torch.cat([prompt_padding_mask, padding_mask]) print(padding_mask.size())