Hello,
When I run your code of dcgan on jupyter notebook, I catch the following issue :
FailedPreconditionError: Error while reading resource variable _AnonymousVar33 from Container: localhost. This could mean that the variable was uninitialized. Not found: Resource localhost/_AnonymousVar33/class tensorflow::Var does not exist.
[[node mul_13/ReadVariableOp (defined at C:\Users\leona.conda\envs\tensorflow\lib\site-packages\keras\backend\tensorflow_backend.py:3009) ]] [Op:__inference_keras_scratch_graph_1815]
Function call stack:
keras_scratch_graph
,
I didn't find anything on stackoverflow, do you know how to solve this problem please ?
Could you have reordered some cells such that some tensor may have been used before initialization?
Try running this tf.global_variables_initializer(), or find documentations related to the mentioned topic. I have solved it once while running sessions on tf1.5
Hello, When I run your code of dcgan on jupyter notebook, I catch the following issue :
FailedPreconditionError: Error while reading resource variable _AnonymousVar33 from Container: localhost. This could mean that the variable was uninitialized. Not found: Resource localhost/_AnonymousVar33/class tensorflow::Var does not exist. [[node mul_13/ReadVariableOp (defined at C:\Users\leona.conda\envs\tensorflow\lib\site-packages\keras\backend\tensorflow_backend.py:3009) ]] [Op:__inference_keras_scratch_graph_1815]
Function call stack: keras_scratch_graph , I didn't find anything on stackoverflow, do you know how to solve this problem please ?
Thank you Léonard