标签:run nbsp rod 计算 中文版 res port python bash
参考的资料:
2.tensorflow官方文档中文版
安装的是Python 2.7; CPU support (no GPU support),版本是1.1
pip install tensorflow
安装完成之后,进入python终端
import tensorflow as tf #创建常量矩阵,类型是float,去掉.的Int matrix1 = tf.constant([[3., 3.]]) matrix2 = tf.constant([[2.],[2.]]) product = tf.matmul(matrix1, matrix2) # 下面创建一个默认的session图,进行计算 sess = tf.Session() result = sess.run(product) print result # 输出 [[ 12.]] # 任务完成, 关闭会话. sess.close()
标签:run nbsp rod 计算 中文版 res port python bash
原文地址:http://www.cnblogs.com/tonglin0325/p/6817137.html