Fix grammar for split_sentences print message

This commit is contained in:
Francis LaBounty 2024-03-15 11:31:25 -06:00 committed by GitHub
parent dbf1a08a0d
commit 920709884a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -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)