From 43097f374c99deab4a8309a2518dd97b11b3c15a Mon Sep 17 00:00:00 2001 From: Terminal <55903432+1044690543@users.noreply.github.com> Date: Tue, 27 Aug 2024 11:33:16 +0800 Subject: [PATCH] Update api.py --- api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api.py b/api.py index c5f7024..a4ab2bd 100644 --- a/api.py +++ b/api.py @@ -378,7 +378,7 @@ def get_phones_and_bert(text,language,version,final=False): phones = sum(phones_list, []) norm_text = ''.join(norm_text_list) - if not final and len(phones) < 6: + if not final: return get_phones_and_bert("." + text,language,version,final=True) return phones,bert.to(torch.float16 if is_half == True else torch.float32),norm_text