From 5a1321692545971e2beeb753aeebb028b7a6317a Mon Sep 17 00:00:00 2001 From: Zengyi Qin Date: Mon, 19 Feb 2024 11:08:26 -0500 Subject: [PATCH] Update __init__.py --- openvoice/text/__init__.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/openvoice/text/__init__.py b/openvoice/text/__init__.py index 1d51bec..6494bcb 100644 --- a/openvoice/text/__init__.py +++ b/openvoice/text/__init__.py @@ -1,6 +1,6 @@ """ from https://github.com/keithito/tacotron """ -from text import cleaners -from text.symbols import symbols +from openvoice.text import cleaners +from openvoice.text.symbols import symbols # Mappings from symbol to numeric ID and vice versa: @@ -43,7 +43,7 @@ def cleaned_text_to_sequence(cleaned_text, symbols): -from text.symbols import language_tone_start_map +from openvoice.text.symbols import language_tone_start_map def cleaned_text_to_sequence_vits2(cleaned_text, tones, language, symbols, languages): """Converts a string of text to a sequence of IDs corresponding to the symbols in the text. Args: