2020年4月11日
摘要: tensorflow实现线性回归 import tensorflow as tf import os #自实现一个线性回归预测 def myregression(): with tf.variable_scope("data"):#变量作用域,代码更加分明 #1准备数据 x特征值[100,1] y目 阅读全文
posted @ 2020-04-11 13:41 啥123 阅读(157) 评论(0) 推荐(0) 编辑