AttributeError: module 'tensorflow' has no attribute 'reset_default_graph'
时间: 2023-08-22 17:08:08 浏览: 148
mdk_armcc_user_guide.pdf
在 TensorFlow 2.0 中,`reset_default_graph` 已经被移除了,因为 TensorFlow 2.0 默认使用动态图模式。如果你想要重置默认图,可以使用`tf.compat.v1.reset_default_graph()`。另外请注意,动态图模式下无法使用 `tf.placeholder()`,需要使用 `tf.compat.v1.placeholder()`。
阅读全文