Artrajz's picture
init
960cd20
raw
history blame
No virus
1.02 kB
from bert_vits2.text.symbols import *
def cleaned_text_to_sequence_v111(cleaned_text, tones, language, _symbol_to_id):
"""version <= 1.1.1"""
phones = [_symbol_to_id[symbol] for symbol in cleaned_text]
tone_start = language_tone_start_map_v111[language]
tones = [i + tone_start for i in tones]
lang_id = language_id_map[language]
lang_ids = [lang_id for i in phones]
return phones, tones, lang_ids
def cleaned_text_to_sequence(cleaned_text, tones, language, _symbol_to_id):
"""Converts a string of text to a sequence of IDs corresponding to the symbols in the text.
Args:
text: string to convert to a sequence
Returns:
List of integers corresponding to the symbols in the text
"""
phones = [_symbol_to_id[symbol] for symbol in cleaned_text]
tone_start = language_tone_start_map[language]
tones = [i + tone_start for i in tones]
lang_id = language_id_map[language]
lang_ids = [lang_id for i in phones]
return phones, tones, lang_ids