Update inference_webui.py

This commit is contained in:
Terminal 2024-08-27 11:32:42 +08:00 committed by GitHub
parent 299f33b5fb
commit 35b6a1da72
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -371,7 +371,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(dtype),norm_text