tensorflow 1.0 新的赋值形式。
1.
W = tf.Variable([.3], tf.float32)
b = tf.Variable([-.3], tf.float32)
x = tf.placeholder(tf.float32)
linear_model = W * x + b
print (linear_model,{x:[1,2,3,4]})
2.tf.placeholder :占位符~,一般要用与feed_dict的~~就先要用这个占位一下
3.tf.reduce_sum :返回跨张量维度的所有元素的和。