Tensorflow2.0学习(三):线性回归的小例子
版权提示:以下所有例子都是参考github大神制作,我只是搬运工 https://github.com/YunYang1994/TensorFlow2.0-Examples 一、最简单的线性回归 首先定义模型和损失函数 import tensorflow as tf import matplotlib.pyplot as plt #定义模型和损失函数 class Model(object): def __init__(self): self.W = tf.Variable(10.0) self.b = tf.Variable(-5.0) def
暂无评论