1. 程式人生 > >TensorFlow入門——hello

TensorFlow入門——hello

ESS constant TE 報錯 結果 port In 成功 說了

上一節說了TensorFlow的安裝,這一節說一下測試的問題

新建一個Python文件,輸入

1 import tensorflow as tf
2 hello = tf .constant (’Hello, TensorFlow!’)
3 sess = tf. Session()
4 print(sess.run(hello))
5 a= tf.constant(lO)
6 b = tf.constant(30)
7 print (sess. run (a + b) )

運行,代碼很簡單。不報錯就是成功的一半,正確結果相信所有人都能知道。

TensorFlow入門——hello