TensorFlow 属性大写,例如tf.constant 对比 tf.Variable
TensorFlow attribute capitalization, e.g. tf.constant vs tf.Variable
我对 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.
tf.constant()
是一个函数(即一个运算)https://www.tensorflow.org/versions/r0.12/api_docs/python/constant_op/constant_value_tensors#constant
而
tf.Variable
是 class.
https://www.tensorflow.org/api_docs/python/tf/Variable
我对 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.
tf.constant()
是一个函数(即一个运算)https://www.tensorflow.org/versions/r0.12/api_docs/python/constant_op/constant_value_tensors#constant
而
tf.Variable
是 class.
https://www.tensorflow.org/api_docs/python/tf/Variable