Revert "Undo forced text padding"

This reverts commit 83ab5e6a00.
This commit is contained in:
James Betker 2021-08-09 11:56:34 -06:00
parent 1068f53b78
commit 74342b860b

View File

@ -57,7 +57,8 @@ class GptTtsCollater():
def __call__(self, batch):
text_lens = [len(x[0]) for x in batch]
max_text_len = max(text_lens)
#max_text_len = max(text_lens)
max_text_len = self.MAX_SYMBOLS_PER_PHRASE # This forces all outputs to have the full 200 characters. Testing if this makes a difference.
mel_lens = [len(x[1]) for x in batch]
max_mel_len = max(mel_lens)
texts = []