Fix for voxpopuli

This commit is contained in:
James Betker 2021-08-16 22:52:05 -06:00
parent 1fede41b7b
commit 4c01d82265

View File

@ -33,7 +33,7 @@ def load_voxpopuli(filename):
continue
file, raw_text, norm_text, speaker_id, split, gender = line
year = file[:4]
filepaths_and_text.append([os.path.join(base, year, file), raw_text])
filepaths_and_text.append([os.path.join(base, year, f'{file}.ogg'), raw_text])
return filepaths_and_text