程序报错:AttributeError: module ‘tensorflow‘ has no attribute ‘xxx‘ 解决办法

一、报错原因:
Tensorflow1.x版本和2.x版本部分方法名不兼容。
安装使用的是Tensorflow2.0及以上版本,而在程序中使用了Tensorflow1.x版本或者情况相反。

二、解决办法:
若导入Tensorflow模块的代码为:

import tensorflow 

替换为:

import tensorflow.compat.v1

若导入Tensorflow模块的代码为:

import tensorflow as tf

替换为:

import tensorflow.compat.v1 as tf

你可能感兴趣的:(小白经验与总结)