From 03250ae6349127e8541746a224cfabbed510b451 Mon Sep 17 00:00:00 2001
From: shixian.shi <shixian.shi@alibaba-inc.com>
Date: 星期二, 21 二月 2023 10:10:17 +0800
Subject: [PATCH] timestamp func bug fix

---
 funasr/utils/timestamp_tools.py |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/funasr/utils/timestamp_tools.py b/funasr/utils/timestamp_tools.py
index f966aee..317c223 100644
--- a/funasr/utils/timestamp_tools.py
+++ b/funasr/utils/timestamp_tools.py
@@ -5,6 +5,8 @@
 from typing import Any, List, Tuple, Union
 
 def time_stamp_lfr6_pl(us_alphas, us_cif_peak, char_list, begin_time=0.0, end_time=None):
+    if not len(char_list):
+        return []
     START_END_THRESHOLD = 5
     TIME_RATE = 10.0 * 6 / 1000 / 3  #  3 times upsampled
     if len(us_alphas.shape) == 3:

--
Gitblit v1.9.1