Tensorflow--[AttributeError:module tensorflow no attribute app]ソリューション

1530 ワード

問題の説明
import tensorflow as tf   
FLAGS = tf.app.flags.FLAGS
  File "E:\CNN\chengxu\SVM-CNN-12.22\lib
etwork\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バージョンの問題
Tensorflow 2を使用する場合.0、ソースコードはTensorflow 1である.いくつかのバージョン.
ソリューション
(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
どちらの方法でもいいです.個人的には1つ目をお勧めします.
(3)pycharmをダウンロードし、pythonバージョンを選択し、pycharmでpythonに対応する仮想環境を作成し、tensorflow 2である場合.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