我已经使用tensorflow了一天,但是会遇到一些麻烦,当我导入tensorflow时会出现AttributeError:'module'对象没有属性'XXXXXX'
环境
我使用ubuntu14.04,python2.7,CUDA工具包8.0和CuDNN v5。我的六个和protobuf的版本分别是:名称:六个版本:1.10.0位置:/usr/local/lib/python2.7/dist-packages要求:名称:protobuf版本:3.2.0位置:/ usr / local / lib / python2.7 / dist-packages要求:六个,setuptools
这是我的测试代码:
import tensorflow as tf
a = tf.placeholder(tf.int16)
b = tf.placeholder(tf.int16)
add = tf.add(a, b)
mul = tf.mul(a, b)
with tf.Session() as sess:
# Run every operation with variable input
print "Addition with variables: %i" % sess.run(add, feed_dict={a: 2, b: 3})
print "Multiplication with variables: %i" % sess.run(mul, feed_dict={a: 2, b: 3})
我得到以下输出:
张量流安装有什么问题吗?或其他任何问题?