当前位置: 代码迷 >> 综合 >> 报错:AttributeError: module ‘tensorflow‘ has no attribute ‘placeholder‘
  详细解决方案

报错:AttributeError: module ‘tensorflow‘ has no attribute ‘placeholder‘

热度:83   发布时间:2023-11-26 03:33:10.0

报错如下:

 解决方法:

原因:在tensorflow2版本下代替使用tensorflow1。

先查看tensorflow版本信息:

pip list

 然后再代码开头加上下述代码:

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

  相关解决方案