Turbot-DL入门教程篇-深度学习框架TensorFlow验证例子
Turbot-DL入门教程篇-深度学习框架TensorFlow验证例子
说明:
- 介绍如何在turbot-DL上测试深度学习框架TensorFlow验证例子
环境:
Python3.5.2
确认版本:
- 确认目前的版本
$ python3 -V
- 如果不是Python3.5.2版本,则切换版本
$ sudo update-alternatives --config python3
There are 2 choices for the alternative python3 (providing /usr/bin/python3).
Selection Path Priority Status
------------------------------------------------------------
* 0 /usr/bin/python3.6 2 auto mode
1 /usr/bin/python3.5 1 manual mode
2 /usr/bin/python3.6 2 manual mode
Press <enter> to keep the current choice[*], or type selection number: 1
- 验证
$ python3 -V
Python 3.5.2
测试:
- 编辑测试例子:
$ vim test.py
- 内容如下:
#!/usr/bin/env python
import tensorflow as tf
hello = tf.constant('Hello, TensorFlow!')
sess = tf.Session()
print(sess.run(hello))
- 效果如下:
$ chmod +x test.py
$ python test.py
...................
Hello, TensorFlow!
获取最新文章: 扫一扫右上角的二维码加入“创客智造”公众号