1. 首页
  2. 数据库
  3. 其它
  4. Tensorflow2.0学习(三):线性回归的小例子

Tensorflow2.0学习(三):线性回归的小例子

上传者: 2021-02-25 08:18:22上传 PDF文件 97.83KB 热度 16次
版权提示:以下所有例子都是参考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
用户评论