摘要: import tensorflow as tf import numpy as np # y = W1*x1 + W2*x2 + B W = tf.Variable(np.zeros([2, 1]), dtype=np.float32) B = tf.Variable(np.zeros([1, 1]), dtype=np.float32) x = tf.placeholder(tf.flo... 阅读全文
posted @ 2017-11-16 16:09 cbing 阅读(612) 评论(0) 推荐(0) 编辑