do not resample audio in Dataloader

pull/10/head
Edresson 2020-08-04 07:58:12 -03:00 committed by erogol
parent df02e876ae
commit 26beea0e1b
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ class MyDataset(Dataset):
self.sort_items()
def load_wav(self, filename):
audio = self.ap.load_wav(filename, sr=self.sample_rate)
audio = self.ap.load_wav(filename)
return audio
@staticmethod