Update api.py

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

2
api.py
View File

@ -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