AttributeError: module 'tensorflow' has no attribute 'app'
时间: 2023-09-27 18:12:15 浏览: 31
AttributeError: module 'tensorflow.compat.v1' has no attribute '
这个错误通常出现在使用TensorFlow早期版本时,因为TensorFlow在某些版本中已经删除了 `app` 模块。如果你的代码中引用了`tensorflow.app`,可以将其替换为`tensorflow.compat.v1.app`。或者,你可以升级到最新版本的TensorFlow以解决这个问题。
阅读全文