TensorFlow實例 2 ---常量、變量、佔位變量

1.變量 import tensorflow as tf x = tf.Variable([2,34,56,33])   #創建變量x,爲一個array print(x)  #查看x的shape,不是x的值。結果是: <tf.Variable 'Variable_3:0' shape=(4,) dtype=int32_ref> with tf.Session() as sess :  ...   
相關文章
相關標籤/搜索