self.obs = tf.placeholder(tf.float32, shape=[None, self.n_features]) AttributeError: module 'tensorflow' has no attribute 'placeholder'
时间: 2023-11-05 13:48:29 浏览: 194
问题解决:module 'tensorflow.compat.v1' has no attribute '
5星 · 资源好评率100%
这个错误通常是因为您没有正确导入TensorFlow模块。请确保您已正确导入TensorFlow,并在代码中使用正确的名称。例如,使用`import tensorflow as tf`导入TensorFlow模块,然后使用`tf.placeholder`来定义占位符。如果您已经正确导入TensorFlow模块并仍然遇到此错误,请检查您的TensorFlow版本是否正确,并尝试重新安装TensorFlow。
阅读全文