-
Notifications
You must be signed in to change notification settings - Fork 698
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
python preprocess.py error #211
Comments
Hmm, that's an indentation error - its just formatting. Maybe try opening the preprocess file in pycharm or similar and see if there are any errrors there in the code editor. Are you new to python? what version are you running? |
I think i figured it out. I'm using the wrong python version. it says 3.6 i think. I gotta check. |
python 3.8 window 7. |
File "C:\Users\newd\miniconda3\envs\py36-32bit\lib\multiprocessing\pool.py", l
5 wav files found in "witch-wife_2010_librivox" +-------------+-----------+--------+------------+-----------+ Traceback (most recent call last):
5 wav files found in "witch-wife_2010_librivox" +-------------+-----------+--------+------------+-----------+ Traceback (most recent call last):
Traceback (most recent call last): 5 wav files found in "witch-wife_2010_librivox" +-------------+-----------+--------+------------+-----------+ Traceback (most recent call last):
Traceback (most recent call last):
|
Same issue on windows. On ubuntu 10.10 running perfectly. |
text_dict = ljspeech(path)
with open(f'{paths.data}text_dict.pkl', 'wb') as f:
pickle.dump(text_dict, f)
i commented the above out in preprocess.py. then the following happened
D:\projects\anacanda-voice-project\WaveRNN-master\WaveRNN-master>python preproce
ss.py --path witch-wife_2010_librivox
File "preprocess.py", line 77
n_workers = max(1, args.num_workers)
^
IndentationError: expected an indented block
when I corrected the above and ran this again:
python preprocess.py --path witch-wife_2010_librivox
ran the above line and the the whole program crashed. I can't seemed to copy the error after this since it crashed. i spend about 2 days trying to get this up and running.
The text was updated successfully, but these errors were encountered: