-
Notifications
You must be signed in to change notification settings - Fork 904
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
What's the proper version of tensorflow for this project? #434
Comments
I can confirm that tensorflow-gpu 1.13.1, 1.14, and 1.15rc2 work (at least for training Tacotron). I haven't gotten around to doing wavenet training yet. : \ |
Use Tensorflow 1.10. I trained Wavenet on Tensorflow 1.14, and I got an error when I tried to do inference from checkpoint file. It seemed that some variables were missing from checkpoint file. (#421) |
Good to know. Thanks. |
You don't have to. My tacotron model was trained with TF 1.14, and now I'm training WaveNet with it on TF 1.10. I see no problem so far. |
Awesome! (I was worried I was going to have to re-do a lot of it). Thanks for the info |
Thank's for the info! I'll have to check the newest as possible version of Tensorflow for WaveNet... |
Can it be that at saving of the checkpoints at WaveNet training the eval model (5,3M) of Wavenet is used instead the synth model (3,2M)? |
Actually I have tried it. In the original check out from git (12th December 2019 head master ab5cb08) the output of the shadow variables with command line "python3 train.py --model='WaveNet'" was: When starting synthsis with the command line "python3 synthesize.py --model='WaveNet' --wavenet_name='WaveNet'" the output was: After moving the creation of the writer the output is the same as in the synthesize:
I am just doing additional training and will then try if it loads without the mentioned error. Strange though because the model is given as parameter to create the shadow saver, thus I assume it is some side effect of something in tensorflow 1.14. |
Further investigation shows that the difference is: Somehow the names differ. I am still debugging where this comes from...
|
Hello everyone! Traceback (most recent call last): Why list index would be out of range I don't understand! I checked the size of |
I saw the Dockerfile and it automatically downloads the newest version of Tensorflow.
Recently, Tensorflow revealed 2.0 version and it's quiet different from the older version.
Could you let me know the proper version of tensorflow to run this project?
The text was updated successfully, but these errors were encountered: