AttributeError: module 'tensorflow' has no attribute 'app'
时间: 2023-09-23 15:10:17 浏览: 39
关于.NET Attribute在数据校验中的应用教程
这个错误可能是由于 TensorFlow 版本更新导致的。在较新的版本中,`app` 模块已经被移除了。您可以尝试使用以下替代方法:
```python
from tensorflow.python.platform import app
```
或者,您也可以安装之前的 TensorFlow 版本,以避免这个问题。可以使用以下命令安装 1.x 版本:
```
pip install tensorflow==1.15
```
请注意,这可能会影响您的代码的其他部分,因为新版本的 TensorFlow 可能会有一些功能和语法上的差异。
阅读全文