diff --git a/GPT_SoVITS/text/g2pw/g2pw.py b/GPT_SoVITS/text/g2pw/g2pw.py index a91bc11..1e3738a 100644 --- a/GPT_SoVITS/text/g2pw/g2pw.py +++ b/GPT_SoVITS/text/g2pw/g2pw.py @@ -127,14 +127,14 @@ def get_dict(): def read_dict(): polyphonic_dict = {} - with open(PP_DICT_PATH) as f: + with open(PP_DICT_PATH,encoding="utf-8") as f: line = f.readline() while line: key, value_str = line.split(':') value = eval(value_str.strip()) polyphonic_dict[key.strip()] = value line = f.readline() - with open(PP_FIX_DICT_PATH) as f: + with open(PP_FIX_DICT_PATH,encoding="utf-8") as f: line = f.readline() while line: key, value_str = line.split(':') @@ -151,4 +151,4 @@ def correct_pronunciation(word,word_pinyins): return word_pinyins -pp_dict = get_dict() \ No newline at end of file +pp_dict = get_dict()