AttributeError: module 'tensorflow' has no attribute 'flags'
时间: 2023-08-03 19:03:54 浏览: 164
pycharm用import报错:AttributeError: module tensorflow(or other) has no attribut (import搜索路径顺序问题)
回答: AttributeError: module 'tensorflow' has no attribute 'flags'错误是因为在tensorflow2.0中,'flags'属性已被移除。解决这个问题的方法是将import tensorflow as tf改为import tensorflow.compat.v1 as tf,并添加tf.disable_v2_behavior()来启用tensorflow1.0的兼容性。这样就可以解决这个报错问题了。[1]
阅读全文