Issue
I have installed tensorflow version r0.11.
In my file name cartpole.py
I have imported tensorflow
:
import tensorflow as tf
and use it:
tf.reset_default_graph()
Trying to run my project in PyCharm I get this error:
in <module>
tf.reset_default_graph()
AttributeError: module 'tensorflow' has no attribute 'reset_default_graph'
How can I fix this error?
Solution
You normally import tensorflow
by writing,
import tensorflow as tf
It's possible that you have named a file in your project tensorflow.py
and the import
statement is importing from this file.
Alternatively, you can try this,
from tensorflow.python.framework import ops
ops.reset_default_graph()
Answered By - martianwars
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.