我对TensorFlow属性大写非常困惑 来自https://www.tensorflow.org/get_started/get_started:
node1 = tf.constant(3.0, dtype=tf.float32)
W = tf.Variable([.3], dtype = tf.float32)
如果更改大写,则会抛出相同的AttributeError,因此可以猜测两者都是属性,并且应该大写均等。
感谢您帮助理解我忽视的任何错综复杂! -G。
答案 0 :(得分:0)
tf.constant()
是一个函数(即操作)https://www.tensorflow.org/versions/r0.12/api_docs/python/constant_op/constant_value_tensors#constant
,而
tf.Variable
是一个班级
https://www.tensorflow.org/api_docs/python/tf/Variable