TensorFlow: Hello World
Revision as of 17:10, 29 July 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)
quit()
Akan keluar
Hello, TensorFlow!