From c888d112480c14d40234338cdd311917e14b8776 Mon Sep 17 00:00:00 2001 From: mrfakename Date: Mon, 26 Feb 2024 15:53:45 -0800 Subject: [PATCH] Splitted -> Split --- melo/api.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)