From 4ffd5655da0884095e68cc7207bf9bf5d409d2bb Mon Sep 17 00:00:00 2001
From: 游雁 <zhifu.gzf@alibaba-inc.com>
Date: 星期四, 16 三月 2023 16:40:15 +0800
Subject: [PATCH] calib
---
funasr/export/export_model.py | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/funasr/export/export_model.py b/funasr/export/export_model.py
index b827f16..c5bcac1 100644
--- a/funasr/export/export_model.py
+++ b/funasr/export/export_model.py
@@ -74,7 +74,8 @@
# using dummy inputs for a example
if self.audio_in is not None:
feats, feats_len = self.load_feats(self.audio_in)
- for feat, len in zip(feats, feats_len):
+ for i, (feat, len) in enumerate(zip(feats, feats_len)):
+ print("debug, iter: {}".format(i))
m(feat, len)
else:
dummy_input = model.get_dummy_inputs()
--
Gitblit v1.9.1