1. 程式人生 > >TensorFlow機器學習框架-學習筆記-001

TensorFlow機器學習框架-學習筆記-001

imp bsp con `` ant In session 框架 constant

# TensorFlow機器學習框架-學習筆記-001


### 測試TensorFlow環境是否安裝完成
-----------------------------
```
import tensorflow as tf

hello = tf.constant(‘Hello,TensorFlow!‘)
sess = tf.Session()
print(sess.run(hello))
```

TensorFlow機器學習框架-學習筆記-001