当前位置:   article > 正文

AttributeError: module 'tensorflow' has no attribute 'reset_default_graph'

attributeerror: module 'tensorflow' has no attribute 'reset_default_graph

AttributeError:模块“tensorflow”没有属性“reset_default_graph”

环境配置:

python3.7
tensorflow2.0
Window 10

初始代码:

tf.reset_default_graph()
  • 1

执行错误:

在这里插入图片描述

解决方法:

import tensorflow as tf
tf.compat.v1.reset_default_graph()
  • 1
  • 2

或者是这样:

import tensorflow.compat.v1 as tf
tf.reset_default_graph()
  • 1
  • 2
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/130993
推荐阅读
相关标签
  

闽ICP备14008679号