From 6c7a19ea56b64d05be4a91f8cb651ca2e4b0dbd8 Mon Sep 17 00:00:00 2001 From: dohe0342 Date: Sat, 10 Dec 2022 15:08:05 +0900 Subject: [PATCH] from local --- .../.model.py.swp | Bin 20480 -> 20480 bytes .../model.py | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/egs/librispeech/ASR/pruned_transducer_stateless_d2v_v2/.model.py.swp b/egs/librispeech/ASR/pruned_transducer_stateless_d2v_v2/.model.py.swp index dcec91ad7b63a23b51a0d19a593705c9530c8e6b..eb6eb3322d4c12ddbd7afc108fa46db3d4a809fb 100644 GIT binary patch delta 118 zcmZozz}T>WQ8dXQ%+puFQqO<^2m}}yT$QFI&)g{b-rkUdpMk*zh(V$pAXy-I2js5; y;*~&L55!SG90|m(KMcBtOo{1^#)$3<^+?QCU!|V5<-v%K!jElorbX delta 133 zcmZozz}T>WQ8dXQ%+puFQqO<^2m}}y?3Jb@dulnX zo(04OK-i{8^5dLb@1LintfP>Unw+1KS`?pOTB6CI00kM9 M1;q-s3em9)00S}{F#rGn diff --git a/egs/librispeech/ASR/pruned_transducer_stateless_d2v_v2/model.py b/egs/librispeech/ASR/pruned_transducer_stateless_d2v_v2/model.py index cf4047a90..7d74dec9e 100644 --- a/egs/librispeech/ASR/pruned_transducer_stateless_d2v_v2/model.py +++ b/egs/librispeech/ASR/pruned_transducer_stateless_d2v_v2/model.py @@ -209,7 +209,7 @@ class Transducer(nn.Module): encoder_out, x_lens = self.encoder(x, x_lens) hyps = [] - hyp_tokens = greedy_search_batch(self, encoder_out, x_lens)#, decoder_out) + hyp_tokens = greedy_search_batch(self, encoder_out, x_lens) for hyp in sp.decode(hyp_tokens): hyps.append(hyp.split())