TensorFlow机器学习框架-学习笔记-001

# TensorFlow机器学习框架-学习笔记-001


### 测试TensorFlow环境是否安装完成
-----------------------------
```
import tensorflow as tf

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

猜你喜欢

转载自www.cnblogs.com/jiftle/p/9190815.html
今日推荐