TensorFlow: Hello World: Difference between revisions
From OnnoCenterWiki
Jump to navigationJump 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) No edit summary |
||
| 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 10: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!