comment correction

This commit is contained in:
Eren Golge 2019-11-19 13:04:34 +01:00
parent b0dbfc55de
commit 3fa185e63d
1 changed files with 3 additions and 3 deletions

View File

@ -166,10 +166,10 @@ class MyDataset(Dataset):
def collate_fn(self, batch): def collate_fn(self, batch):
r""" r"""
Perform preprocessing and create a final data batch: Perform preprocessing and create a final data batch:
1. PAD sequences with the longest sequence in the batch 1. Sort batch instances by text-length
2. Convert Audio signal to Spectrograms. 2. Convert Audio signal to Spectrograms.
3. PAD sequences that can be divided by r. 3. PAD sequences wrt r.
4. Convert Numpy to Torch tensors. 4. Load to Torch.
""" """
# Puts each data field into a tensor with outer dimension batch size # Puts each data field into a tensor with outer dimension batch size