摘要: import tensorflow as tf import numpy as np x_data= np.random.rand(100).astype(np.float32) y_data = x_data*0.1 +0.3 Weights = tf.Variable(tf.random_uniform([1],-1.0,1.0)) biases = tf.Variable(tf.zer... 阅读全文
posted @ 2018-12-05 19:51 萧白白 阅读(204) 评论(0) 推荐(0)