Tensor Flow:
Tensorflow installation:
$conda create -n install tensorflow pip python==3.6.5
$activate tensorflow
$pip install --ignore-installed -upgrade tensorflow
$ pip install tensorflow
$ pip install tensorflow==1.8.0
Tensorflow verification:
$ pip list
$ pip show tensorflow
Checking Tensorflow version:
import tensorflow as tf
print(tf.__version__)
output:
1.10.0
Hello world Program in Tensorflow:
import tensorflow as tf
input=tf.constant('Hii This is Subhash')
sess=tf.Session()
print(sess.run(input))
Output:
Hii This is Subhash