ttributeError: module 'tensorflow' has no attribute 'reset_default_graph'
时间: 2023-08-02 20:09:24 浏览: 80
问题解决:module 'tensorflow.compat.v1' has no attribute '
5星 · 资源好评率100%
这个错误是因为 TensorFlow 2.x 的版本中已经不再使用 `reset_default_graph` 方法了。在 TensorFlow 2.x 中,计算图默认是自动管理的,并且不再需要显式地重置或清除。相反,你可以使用 `tf.compat.v1.reset_default_graph()` 方法来重置默认图。请注意,这个方法只是为了向后兼容,如果你正在使用 TensorFlow 1.x 的代码,在迁移至 TensorFlow 2.x 时可能会遇到这个问题。
阅读全文