Ich habe Tensorflow für EINEN Tag verwendet, aber es gibt einige Probleme. Wenn ich Tensorflow importiere, gibt es AttributeError: Das Objekt 'module' hat kein Attribut 'XXXXXX'.
Umgebung
Ich verwende Ubuntu14.04, Python2.7, CUDA Toolkit 8.0 und CuDNN v5. Und Versionen meiner sechs und protobuf sind: Name: sechs Version: 1.10.0 Ort: /usr/local/lib/python2.7/dist-packages Benötigt: Name: protobuf Version: 3.2.0 Ort: / usr / local / lib / python2.7 / dist-packages Benötigt: sechs Setuptools
Hier ist mein Testcode:
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})
Ich bekomme diese Ausgabe:
Gibt es ein Problem mit der Tensorflow-Installation? oder andere Probleme?