Closed wierzs closed 3 years ago
I'm not sure if we have the same issue, but try going to the "utils" folder, open the "dataset.py" file, and in line 54 change "num_workers=2," to "num_workers=0,".
tell me if that works
Hello,
Thank you so much for giving input! I tried this and now I have another error. At least this is progress.
Now it's saying:
TypeError: can't convert cuda:0 device type tensor to numpy. Use Tensor.cpu() to copy the tensor to host memory first.
I guess I just have to find out where to add .cpu() now. Thank you!
np man glad i could help, i never had that other issue you are now having so cant help with that
Ok, I got it! In train_wavernn.py, line 129:
Change if np.isnan(grad_norm):
to if np.isnan(grad_norm.cpu()):
It's training now. Thank you @Ahmad21A for the help!
oh yeaaa the isnan thing, i just deleted that line lol, idk anything about python but i figured out how to run this repo by sheer luck
Hello, Upon training tacotron for about 250k steps I decided to force gta and start WaveRnn training. I initialized train_wavernn.py --gta, cuda was detected and the parameters was loaded. After about 10 seconds I got this AttributeError:
Runnung in PowerShell
So I take a look in utils/init.py and find this on line 42++:
I'm an amateur in Python, but isn't this basically saying: Path = none, if Path == none, exit()? What am I missing here? Thank you for any answers you may have!
Running on Cuda 10.1 GPU: RTX2070 Also, PIP list: