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
Hey @HJ-j11 ,
its due to upgradation of Tensorflow from v-01 to v-02 ,
you can replace
import tensorflow as tf
by
import tensorflow.compat.v1 as tf
tf.disable_v2_behavior()
I ran the example 2_BasicModel linear_regression.py and the found error on jupyter notebook.
Error found at 21 lines, X = tf.placeholder("float").
Is there any solution that I can run tensorflow without it?
The text was updated successfully, but these errors were encountered: