虚拟机软件使用VMWare Player(Mac系统下可以用VMWare Fusion)或Virtural Box(Windows和MAC系统都可用)
注意:宿主机(Windows或Mac)需要是64位系统
虚拟机资源要求:内存2G以上(建议4G),硬盘占用20G左右
操作系统:Ubuntu-16.04.2
Python版本:Python 2.7.12
深度学习所需工具包(自行安装可使用pip):numpy, ipython,matplotlib, nltk, jieba, sklearn, scipy,tensorflow(CPU版本, 1.2.0), ipython notebook (jupyter notebook)
IDE:PyCharm Community IDE (2017.1.4)
系统账号密码
import tensorflow as tf # 使用tensorflow进行简单的计算 x = tf.placeholder("float") # 创建变量x y = tf.placeholder("float") # 创建变量y z = tf.add(x, y) + tf.multiply(x, y) # x与y之和与之积 with tf.Session() as sess: print("%.2f should equal 4.00" % sess.run(z, feed_dict={x: 1, y: 2})) print("%.2f should equal 15.00" % sess.run(z, feed_dict={x: 3, y: 3}))