摘要: x = tf.placeholder(tf.float32) y = tf.placeholder(tf.float32) w = tf.Variable(tf.zeros([1, 1], dtype=tf.float32)) b = tf.Variable(tf.ones([1, 1], dtype=tf.float32)) y_hat = tf.add(b, tf.matmul(x... 阅读全文
posted @ 2016-12-07 11:19 uprightws 阅读(5672) 评论(0) 推荐(0) 编辑