AttributeError: module 'tensorflow' has no attribute 'FIFOQueue'
时间: 2023-10-09 14:08:04 浏览: 123
pycharm用import报错:AttributeError: module tensorflow(or other) has no attribut (import搜索路径顺序问题)
这个错误通常是因为 TensorFlow 版本太高导致的。在 TensorFlow 2.0 及以上版本中,`FIFOQueue` 已经被弃用了。
如果你使用的是早期版本的 TensorFlow,可以尝试将其升级到最新版本。如果你使用的是 TensorFlow 2.0 及以上版本,你需要使用`tf.queue` 模块中的其他队列类型替代 `FIFOQueue`。例如,`tf.queue.FIFO` 或 `tf.queue.PaddingFIFOQueue` 可以用来代替 `tf.FIFOQueue`。你可以在 TensorFlow 的官方文档中找到更多有关队列的信息。
阅读全文