Changed "Text splitted to sentences" to "Text split into sentences"
This commit is contained in:
Delano Leslie 2024-07-23 14:15:16 -07:00 committed by GitHub
parent dbf1a08a0d
commit 7c690d3354
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)