AttributeError: module 'tensorflow.python.keras.optimizers' has no attribute 'Adam'
时间: 2023-10-27 16:05:36 浏览: 212
python中利用xml.dom模块解析xml的方法教程
这个错误通常是因为 TensorFlow 版本过低导致的。在 TensorFlow 2.0 及以上版本中,Adam 优化器已经被集成到了 tf.keras.optimizers 中,可以直接使用。如果你使用的是旧版本的 TensorFlow,可以尝试更新到最新版本或者使用旧版本的优化器,如 tf.train.AdamOptimizer。
阅读全文