Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 235 Bytes

README.md

File metadata and controls

12 lines (9 loc) · 235 Bytes

TensorFlow

Learning Deep TensorFlow End-To-End Process
Working...

Hello World with Tensorflow..

import tensorflow as tf
cons = tf.constant("Hello World!")
sess = tf.Session()
print(sess.run(cons))

Hello World!