From 920709884ae5c92987b89f6bb49deeb54870447d Mon Sep 17 00:00:00 2001 From: Francis LaBounty <73464335+francislabountyjr@users.noreply.github.com> Date: Fri, 15 Mar 2024 11:31:25 -0600 Subject: [PATCH] Fix grammar for split_sentences print message --- TTS/utils/synthesizer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TTS/utils/synthesizer.py b/TTS/utils/synthesizer.py index b98647c3..8f60a864 100644 --- a/TTS/utils/synthesizer.py +++ b/TTS/utils/synthesizer.py @@ -294,7 +294,7 @@ class Synthesizer(nn.Module): if text: sens = [text] if split_sentences: - print(" > Text splitted to sentences.") + print(" > Text split into sentences.") sens = self.split_into_sentences(text) print(sens)