NVIDIA / tacotron2

Tacotron 2 - PyTorch implementation with faster-than-realtime inference
BSD 3-Clause "New" or "Revised" License
5.12k stars 1.39k forks source link

check dataset issue; checking training files #574

Open jprzybyl opened 2 years ago

jprzybyl commented 2 years ago

I am getting the following error: Checking Training Files 10:40 PM 9/18/2022 [WARNING] does not exist.


IndexError Traceback (most recent call last)

in ----> 1 check_dataset(hparams)

1 frames

in check_arr(filelist_arr) 346 if (not os.path.exists(file[0])): 347 print("|".join(file), "\n[WARNING] does not exist.") --> 348 if len(file[1]) < 3: 349 print("|".join(file), "\n[info] has no/very little text.") 350 if not ((file[1].strip())[-1] in r"!?,.;:"):

IndexError: list index out of range

I followed the tutorial of making WAV folder as well as the list for corresponding sentences and I am hitting this snug before training the model. Any ideas? Please help

stickbrime commented 1 year ago

me too,I have that problem too.