Tensorflow——[AttributeError:module tensorflow no attribute app]解决方案

问题描述

import tensorflow as tf   
FLAGS = tf.app.flags.FLAGS
  File "E:\CNN\chengxu\SVM-CNN-12.22\lib\network\resnet_cifar.py", line 9, in 
    from lib.config.config import FLAGS
  File "E:\CNN\chengxu\SVM-CNN-12.22\lib\config\config.py", line 16, in 
    FLAGS = tf.app.flags.FLAGS
AttributeError: module 'tensorflow' has no attribute 'app'

官方文档

https://tensorflow.google.cn/install?hl=zh_cn 

https://github.com/tensorflow/tensorflow/issues/34431 

问题分析 

Tensorflow版本问题

当使用Tensorflow2.0,而源代码是Tensorflow1.几版本。

解决方案

(1)将import tensorflow as tf 改为import tensorflow.compat.v1 as tf

import tensorflow.compat.v1 as tf
FLAGS = tf.app.flags.FLAGS

(2)用tf.compat.v1.flags替换tf.app.flags

这两种方法都可以。个人推荐第一种。

(3)下载pycharm,选择python版本,在pycharm里面为python创建对应的虚拟环境,如果原来是tensorflow2.0版本卸载掉,安装tensorflow 1.x版本。

记得勾选specific version 才可以安装。 

 (4)重装Tensorflow

pip3 uninstall tensorflow-gpu#卸载

pip3 install --upgrade tensorflow-gpu #安装

参考文章

https://stackoverflow.com/questions/59272234/attributeerror-module-tensorflow-has-no-attribute-app-error 

https://blog.csdn.net/qq_24163555/article/details/102954704

https://blog.csdn.net/weixin_41012399/article/details/103654641

https://www.jianshu.com/p/9b801ecc5fe8

你可能感兴趣的:(#,Python)