TensorFlow: Hello World
Revision as of 07:47, 13 August 2019 by Onnowpurbo (talk | contribs)
Ketik
python
Ketik perintah
import tensorflow as tf
hello = tf.constant("Hello, TensorFlow!")
sess=tf.Session()
print(sess.run(hello))
Akan keluar
Hello, TensorFlow!