diff --git a/melo/api.py b/melo/api.py index 852b24e..32ea97f 100644 --- a/melo/api.py +++ b/melo/api.py @@ -65,7 +65,7 @@ class TTS(nn.Module): @staticmethod def split_sentences_into_pieces(text, language): texts = split_sentence(text, language_str=language) - print(" > Text splitted to sentences.") + print(" > Text split to sentences.") print('\n'.join(texts)) print(" > ===========================") return texts @@ -110,4 +110,4 @@ class TTS(nn.Module): if output_path is None: return audio else: - soundfile.write(output_path, audio, self.hps.data.sampling_rate) \ No newline at end of file + soundfile.write(output_path, audio, self.hps.data.sampling_rate)