I did not use TensorFlow for a while and now, when I was starting to use it again, I have the problem with the first basic line of my code:
X = tf.placeholder(name = 'X')
I get the following error message:
AttributeError: module 'tensorflow' has no attribute 'placeholder'
What I got from googling a bit, is that the placeholder
method got deprecated.
So, my question is where should I start reading to figure out what was deprecated and what is the new way to use TensorFlow?