This commit is contained in:
游雁 2023-03-16 19:28:44 +08:00
parent 6ca0d1f54c
commit 175860147c

View File

@ -75,7 +75,6 @@ class ASRModelExportParaformer:
if self.audio_in is not None:
feats, feats_len = self.load_feats(self.audio_in)
for i, (feat, len) in enumerate(zip(feats, feats_len)):
print("debug, iter: {}".format(i))
with torch.no_grad():
m(feat, len)
else: