flags = tf.flags AttributeError: module 'tensorflow' has no attribute 'flags'
时间: 2023-12-21 07:31:56 浏览: 179
问题解决:module 'tensorflow.compat.v1' has no attribute '
5星 · 资源好评率100%
这个错误是因为在tensorflow模块中没有名为'flags'的属性。根据提供的引用,我们可以看到这个错误是由于找不到名为'app'的属性而引起的。要解决这个问题,你可以尝试使用其他属性或方法来替代'flags'属性。你可以查看tensorflow模块的文档或其他资源,以了解可用的属性和方法。另外,还可以尝试更新tensorflow模块到最新版本,以确保你使用的是最新的功能和修复的bug。
阅读全文