I try to use tensorflow for two days, installing and reinstalling it again and again in python2.7 and 3.4. No matter what I do, I get this error message when trying to use tensorflow.placeholder ()
This is very boilerplate code:
tf_in = tf.placeholder("float", [None, A])
No matter what I do, I always get a trace back:
Traceback (most recent call last): File "/home/willim/PycharmProjects/tensorflow/tensorflow.py", line 2, in <module> import tensorflow as tf File "/home/willim/PycharmProjects/tensorflow/tensorflow.py", line 53, in <module> tf_in = tf.placeholder("float", [None, A])
Does anyone know how I can fix this?
python machine-learning tensorflow
user3023715
source share