module 'tensorflow' has no attribute 'get_default_graph' code example

Example 1: module 'tensorflow' has no attribute 'reset_default_graph'

import tensorflow as tf
tf.compat.v1.reset_default_graph()

Example 2: AttributeError: module 'tensorflow' has no attribute 'GraphDef'

tf.compat.v1.GraphDef()   # -> instead of tf.GraphDef()
tf.compat.v2.io.gfile.GFile()   # -> instead of tf.gfile.GFile()

Example 3: module 'tensorflow' has no attribute 'reset_default_graph'

from tensorflow.python.framework import ops
ops.reset_default_graph()

Tags:

Misc Example