AttributeError: module 'tensorflow' has no attribute 'placeholder'
时间: 2023-05-21 12:01:27 浏览: 88
关于.NET Attribute在数据校验中的应用教程
这错误通常是因为 TensorFlow 版本不兼容导致的。在 TensorFlow 2.0 中,placeholder 已经被弃用,应该使用 tf.compat.v1.placeholder。如果您使用的是 TensorFlow 1.x 版本,则应该使用 tf.placeholder。请检查您的 TensorFlow 版本并相应地更改代码。
阅读全文