You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
now i have a way to solve it:
is it possible uu installed using conda install?
That is not an officially supported way to install. I recommend you retry installing with pip install even after using conda to create the environment.
use pip reinstall tensorflow.
——————————————————定义神经网络变量——————————————————
X=tf.placeholder(tf.float32, [None,time_step,input_size]) #每批次输入网络的tensor
Y=tf.placeholder(tf.float32, [None,time_step,output_size]) #每批次tensor对应的标签
运行到这里报错:
AttributeError: module 'tensorflow' has no attribute 'placeholder'
The text was updated successfully, but these errors were encountered: