AttributeError: type object 'IteratorBase' has no attribute 'from_structure'
时间: 2023-10-24 09:06:13 浏览: 213
AttributeError: ‘NoneType’ object has no attribute ‘children’ 错误
5星 · 资源好评率100%
这个错误通常是因为您在使用TensorFlow时使用了过时的API。
在 TensorFlow 2.0 中,`IteratorBase.from_structure()` 已被移除,取而代之的是 `tf.data.Iterator.from_structure()`。
因此,您需要更新代码以使用新的API。如果您正在使用旧版本的 TensorFlow,则可以尝试升级到最新版本以解决此问题。
阅读全文