ValueError: Variable d_h0_conv/w/Adam/ does not exist
See original GitHub issuewhen running on mnist dataset, I got this error.
ValueError: Variable d_h0_conv/w/Adam/ does not exist, or was not created with tf.get_variable(). Did you mean to set reuse=None in VarScope?
Can you help me to explain it?
Thanks
Issue Analytics
- State:
- Created 7 years ago
- Comments:5 (2 by maintainers)
Top Results From Across the Web
ValueError: Variable d_h0_conv/w/Adam/ does not exist, or ...
I got this error when training the model with tensorflow 1.1.0 Seems that this issue related to tf r1.0 I'm a beginner of...
Read more >python - Variable d_h0_conv/w/Adam/ does not exist, or was ...
The actual error is this ValueError: Variable d_h0_conv/w/Adam/ does not exist, or was not created with tf.get_variable(). Did you mean to ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@carpedm20 Can you please elaborate a little bit about what exactly is the problem? I can see that the main changes are basically using
tf.variable_scope()
for discriminator and generator.I faced the same issue in using improved-gan, but as a beginner for TensorFlow, I found out that it’s not as straightforward as I thought. I am still trying to figure out how to solve it in the improved-gan repository. Any additional information will be a huge help to me!
Thanks for your sharing~@FlyingTourist, it helps a lot