Difference between revisions of "TensorFlow: Hello World"
Jump to navigation
Jump to search
Onnowpurbo (talk | contribs) (Created page with "Ketik python Ketik perintah import tensorflow as tf hello = tf.constant("Hello, TensorFlow!") sess=tf.Session() print sess.run(hello) Akan keluar Hello, TensorFlow!...") |
Onnowpurbo (talk | contribs) |
||
| Line 9: | Line 9: | ||
sess=tf.Session() | sess=tf.Session() | ||
print sess.run(hello) | print sess.run(hello) | ||
| + | quit() | ||
Akan keluar | Akan keluar | ||
Revision as of 17:10, 29 July 2019
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!