Kyubyong / dc_tts

A TensorFlow Implementation of DC-TTS: yet another text-to-speech model
Apache License 2.0
1.16k stars 370 forks source link

file not found #96

Open mxged opened 3 years ago

mxged commented 3 years ago

FileNotFoundError: [Errno 2] No such file or directory: 'data/private/voice/LJSpeech-1.0\transcript.csv' not really sure what im doing at all with any of this so help would be very much appreciated

jkuhlemann commented 3 years ago

Have you downloaded the LJ Speech dataset? Unzip the file and put the folder in the directory mentioned in the error.

Also, in the newest LJ Speech dataset, (ver 1.1) 'transcript.csv' is now 'metadata.csv'. To fix that either rename the file to 'transcript.csv' or in data_load.py in line 45 change the file name to 'metadata.csv'.

Hope that helps!