Task1 线性回归

线性回归

  1. 线性回归的基本元素
  2. 线性回归模型从零开始实现
  3. 线性回归模型使用pytorch的简洁实现

1.线性回归的基本要素

模型

假设房价取决于房屋的两个状态:面积(平方米)与房龄(年),探索价格与这两个因素的具体关系。线性回归假设输出与各个输入之间是线性关系:
在这里插入图片描述

数据集

我们通常收集一系列的真实数据,例如多栋房屋的真实售出价格和它们对应的面积和房龄。我们希望在这个数据上面寻找模型参数来使模型的预测价格与真实价格的误差最小。在机器学习术语里,该数据集被称为训练数据集(training data set)或训练集(training set),一栋房屋被称为一个样本(sample),其真实售出价格叫作标签(label),用来预测标签的两个因素叫作特征(feature)。特征用来表征样本的特点

损失函数

模型训练中,通常选取一个非负数作为误差来衡量价格预测值与真实值之间的误差。且数值越小表示误差越小。常用的就是要选择平方函数。它在评估索引为 i 的样本误差的表达式为:
预测值:在这里插入图片描述
实际值:在这里插入图片描述
在这里插入图片描述

对应小批量的目标函数(代价函数)即为:

在这里插入图片描述

优化函数-随机梯度下降

当模型和损失函数形式较为简单时,上面的误差最小化问题的解可以直接用公式表达出来。这类解叫作解析解(analytical solution)。本节使用的线性回归和平方误差刚好属于这个范畴。

然而,大多数深度学习模型并没有解析解,只能通过优化算法有限次迭代模型参数来尽可能降低损失函数的值。这类解叫作数值解(numerical solution)。

在求数值解的优化算法中,小批量随机梯度下降(mini-batch stochastic gradient descent)在深度学习中被广泛使用。它的算法很简单:先选取一组模型参数的初始值,如随机选取;接下来对参数进行多次迭代,使每次迭代都可能降低损失函数的值。在每次迭代中,先随机均匀采样一个由固定数目训练数据样本所组成的小批量(mini-batch)B,然后求小批量中数据样本的平均损失有关模型参数的导数(梯度),最后用此结果与预先设定的一个正数的乘积作为模型参数在本次迭代的减小量。
在这里插入图片描述
学习率: η代表在每次优化中,能够学习的步长的大小

批量大小: B是小批量计算中的批量大小batch size

总结一下,优化函数的有以下两个步骤:

  • (i)初始化模型参数,一般来说使用随机初始化;
  • (ii)我们在数据上迭代多次,通过在负梯度方向移动参数来更新每个参数。

矢量计算

在模型训练或预测时,我们常常会同时处理多个数据样本并用到矢量计算。在介绍线性回归的矢量计算表达式之前,让我们先考虑对两个向量相加的两种方法。

  1. 向量相加的一种方法是,将这两个向量按元素逐一做标量加法。
  2. 向量相加的另一种方法是,将这两个向量直接做矢量加法。
import torch
import time

# 创建两个1000*1的全为1的向量
n = 1000
a = torch.ones(n)
b = torch.ones(n)
# 定义Timer计时类测量程序运算时间
class Timer(object):
    #记录不同时间
    def __init__(self): 
        self.times = []  # 空元组
        self.start()  # 函数
        
    def start(self): 
        #计时开始
        self.start_time = time.time()  # 返回当前时间

    def stop(self):
        # 计时结束
        self.times.append(time.time() - self.start_time) # 元组加入运行时间
        return self.times[-1] # 返回运行时间

    def avg(self):
        # 计算每次循环的平均耗时
        return sum(self.times)/len(self.times)

    def sum(self):
        # 返回所有记录下来的时间
        return sum(self.times)

现在我们可以来测试了。首先将两个向量使用for循环按元素逐一做标量加法。

timer = Timer()#将Timer实例化,实例化:分析具体的某一个学生的特征,此时timer也有两个属性times & start
c = torch.zeros(n)#初始1000*1的零向量
for i in range(n):
    c[i] = a[i] + b[i]
'%.5f sec' % timer.stop()#调用stop函数返回运行时间

‘0.01669 sec’

另外是使用torch来将两个向量直接做矢量加法:

timer.start()#计时开始
d = a + b#使用torch直接做矢量加法
'%.5f sec' % timer.stop()#调用stop函数返回运行时间

‘0.00100 sec’

结果很明显,后者比前者运算速度更快。因此,我们应该尽可能采用矢量计算,以提升计算效率

2.线性回归模型从零开始的实现

# import packages and modules
#内嵌绘图,魔法方法
%matplotlib inline
import torch
from IPython import display
from matplotlib import pyplot as plt
import numpy as np
import random

print(torch.__version__)#返回torch版本号
1.4.0

生成数据集

使用线性模型来生成数据集,生成一个1000个样本的数据集,下面是用来生成数据的线性关系:
在这里插入图片描述

# 设置输入特征参数 
num_inputs = 2
# 设置样本数
num_examples = 1000

# 设置真实的权重和偏差以生成对应的标签
true_w = [2, -3.4]#[面积,房龄]
true_b = 4.2#偏差

#生成随机矢量,维度1000*2,32位浮点型
features = torch.randn(num_examples, num_inputs,
                      dtype=torch.float32)
labels = true_w[0] * features[:, 0] + true_w[1] * features[:, 1] + true_b#严格线行意义上的标签值
labels += torch.tensor(np.random.normal(0, 0.01, size=labels.size()),dtype=torch.float32)#加上一个正态分布随机生成的偏差

使用图像来展示生成的数据

plt.scatter(features[:, 1].numpy(), labels.numpy(), 1);
plt.show()
# 绘制数据分布散点图,横轴为某一个特征值,纵轴为生成的标签

在这里插入图片描述

读取数据

ef data_iter(batch_size, features, labels):
    num_examples = len(features)#1000
    indices = list(range(num_examples))#[0,...,999]
    random.shuffle(indices)  # 随机读取10个样本
    # 每batch_size取一个样本,如果最后一个index大于999就取999
    for i in range(0, num_examples, batch_size):
        j = torch.LongTensor(indices[i: min(i + batch_size, num_examples)]) # the last time may be not enough for a whole batch
        yield  features.index_select(0, j), labels.index_select(0, j)

yield函数:先把yield看做“return”,这个是直观的,它首先是个return,看做return之后再把它看做一个是生成器(generator)的一部分(带yield的函数才是真正的迭代器)。
返回前先存在生成器g(generator),此时需要返回的没有值,需要调用next()
函数才能显示,下一次循环才return之前的值。

batch_size = 10
for X, y in data_iter(batch_size, features, labels):
    print(X, '\n', y)
    break
tensor([[ 2.8964, -0.4639],
        [-0.3943,  0.3986],
        [ 1.1260, -0.4457],
        [-0.3755,  0.7148],
        [-0.3687, -0.8222],
        [-0.8907, -1.4402],
        [-0.3103, -0.6795],
        [ 0.6705, -0.1666],
        [ 0.0491, -0.6481],
        [-0.1303, -1.0997]]) 
 tensor([11.5594,  2.0733,  7.9592,  1.0108,  6.2494,  7.3302,  5.8921,  6.0970,
         6.5126,  7.6747])

初始化模型参数

w = torch.tensor(np.random.normal(0, 0.01, (num_inputs, 1)), dtype=torch.float32)#设置步长为0.01
b = torch.zeros(1, dtype=torch.float32)#初始化0

w.requires_grad_(requires_grad=True)#梯度附加
b.requires_grad_(requires_grad=True)

定义模型

定义用来训练参数的训练模型:
在这里插入图片描述

def linreg(X, w, b):
    return torch.mm(X, w) + b

定义损失函数

我们使用的是均方误差损失函数:
在这里插入图片描述

def squared_loss(y_hat, y): 
    return (y_hat - y.view(y_hat.size())) ** 2 / 2

定义优化函数

在这里插入图片描述

#在这里优化函数使用的是小批量随机梯度下降
def sgd(params, lr, batch_size):
    for param in params:
        param.data -= lr * param.grad / batch_size # 无梯度轨迹参数操作数据

训练

当数据集、模型、损失函数和优化函数定义完了之后就可来准备进行模型的训练了

# 超级参数初始化
lr = 0.03
num_epochs = 5

net = linreg
loss = squared_loss

# 训练
for epoch in range(num_epochs):  # 训练重复次数
    # 在每个epoch中,数据集中的所有样本都将使用一次
    
    # X是特征 y 是随机样品的标签
    for X, y in data_iter(batch_size, features, labels):
        l = loss(net(X, w, b), y).sum()  
        # 批量样品损失梯度的计算
        l.backward()  
        # 用小批量随机梯度下降法求解iter模型参数
        sgd([w, b], lr, batch_size)  
        # 重置参数梯度
        w.grad.data.zero_()
        b.grad.data.zero_()
    train_l = loss(net(features, w, b), labels)
    print('epoch %d, loss %f' % (epoch + 1, train_l.mean().item()))
    # epoch 1, loss 0.034179
    # epoch 2, loss 0.000119
    # epoch 3, loss 0.000049
    # epoch 4, loss 0.000049
    # epoch 5, loss 0.000049
print(w, true_w, b, true_b)
# tensor([[ 1.9995],
#         [-3.4002]], requires_grad=True) [2, -3.4] tensor([4.1997], requires_grad=True) 4.2

完整代码:

import torch
from IPython import display
from matplotlib import pyplot as plt
import numpy as np
import random
print(torch.__version__)
# 设置输入特征参数
num_inputs = 2
# 设置样本数
num_examples = 1000

# 设置真实的权重和偏差以生成对应的标签
true_w = [2, -3.4]#[面积,房龄]
true_b = 4.2#偏差

#生成随机矢量,维度1000*2,32位浮点型
features = torch.randn(num_examples, num_inputs,
                      dtype=torch.float32)
labels = true_w[0] * features[:, 0] + true_w[1] * features[:, 1] + true_b#严格线行意义上的标签值
labels += torch.tensor(np.random.normal(0, 0.01, size=labels.size()),dtype=torch.float32)#加上一个正态分布随机生成的偏差

plt.scatter(features[:, 1].numpy(), labels.numpy(), 1)  # 绘制数据分布散点图,横轴为某一个特征值,纵轴为生成的标签值
def data_iter(batch_size, features, labels):
    num_examples = len(features)
    indices = list(range(num_examples)) # [0,...,999]
    random.shuffle(indices)  # random read 10 samples
    # 每batch_size取一个样本,如果最后一个index大于999就取999
    for i in range(0, num_examples, batch_size):
        j = torch.LongTensor(indices[i: min(i + batch_size, num_examples)]) # the last time may be not enough for a whole batch
        yield  features.index_select(0, j), labels.index_select(0, j)
batch_size = 10
for X, y in data_iter(batch_size, features, labels):
    print(X, '\n', y)
    break
w = torch.tensor(np.random.normal(0, 0.01, (num_inputs, 1)), dtype=torch.float32) # 步长0.01
b = torch.zeros(1, dtype=torch.float32) # 初始化为0

w.requires_grad_(requires_grad = True) # 梯度附加
b.requires_grad_(requires_grad = True)

#定义模型
def linreg(X, w, b):
    return torch.mm(X, w) + b

#定义损失函数
def squared_loss(y_hat, y):
    return (y_hat - y.view(y_hat.size())) ** 2 / 2#view用法类似于resize

#在这里优化函数使用的是小批量随机梯度下降
def sgd(params, lr, batch_size):
    for param in params:
        param.data -= lr * param.grad / batch_size # 无梯度轨迹参数操作数据


#当数据集、模型、损失函数和优化函数定义完了之后就可来准备进行模型的训
# super parameters init
lr = 0.03
num_epochs = 5

net = linreg
loss = squared_loss

# training
for epoch in range(num_epochs):  # training repeats num_epochs times
    # in each epoch, all the samples in dataset will be used once

    # X is the feature and y is the label of a batch sample
    for X, y in data_iter(batch_size, features, labels):
        l = loss(net(X, w, b), y).sum()
        # calculate the gradient of batch sample loss
        l.backward()
        # using small batch random gradient descent to iter model parameters
        sgd([w, b], lr, batch_size)
        # reset parameter gradient
        w.grad.data.zero_()
        b.grad.data.zero_()
    train_l = loss(net(features, w, b), labels)
    print('epoch %d, loss %f' % (epoch + 1, train_l.mean().item()))

# epoch 1, loss 0.034179
# epoch 2, loss 0.000119
# epoch 3, loss 0.000049
# epoch 4, loss 0.000049
# epoch 5, loss 0.000049
print(w, true_w, b, true_b)

# tensor([[ 1.9995],
#         [-3.4002]], requires_grad=True) [2, -3.4] tensor([4.1997], requires_grad=True) 4.2

3.线性回归模型使用pytorch的简洁实现

import torch
from torch import nn
import numpy as np
torch.manual_seed(1)

print(torch.__version__)
torch.set_default_tensor_type('torch.FloatTensor')

生成数据集

在这里生成数据集跟从零开始的实现中是完全一样的。

num_inputs = 2
num_examples = 1000

true_w = [2, -3.4]
true_b = 4.2

features = torch.tensor(np.random.normal(0, 1, (num_examples, num_inputs)), dtype=torch.float)
labels = true_w[0] * features[:, 0] + true_w[1] * features[:, 1] + true_b
labels += torch.tensor(np.random.normal(0, 0.01, size=labels.size()), dtype=torch.float)

读取数据集

import torch.utils.data as Data

batch_size = 10

# combine featues and labels of dataset
dataset = Data.TensorDataset(features, labels)

# put dataset into DataLoader
data_iter = Data.DataLoader(
    dataset=dataset,            # torch TensorDataset format
    batch_size=batch_size,      # mini batch size
    shuffle=True,               # whether shuffle the data or not
    num_workers=2,              # read data in multithreading
)    
for X, y in data_iter:
    print(X, '\n', y)
    break

运行结果:

tensor([[ 0.0831, -0.0726],
        [ 1.3786,  0.7272],
        [-0.7574, -2.0946],
        [-0.0227,  1.6896],
        [ 1.6156, -0.9313],
        [ 0.3156, -1.2823],
        [-0.2269,  1.2045],
        [-0.4541, -0.4201],
        [ 0.4115, -1.4621],
        [-0.5119,  0.0121]]) 
 tensor([ 4.6115,  4.4784,  9.8002, -1.5955, 10.5741,  9.2021, -0.3589,  4.7097,
         9.9856,  3.1337])

定义模型

class LinearNet(nn.Module):
    def __init__(self, n_feature):
        super(LinearNet, self).__init__()      # call father function to init 
        self.linear = nn.Linear(n_feature, 1)  # function prototype: `torch.nn.Linear(in_features, out_features, bias=True)` 涓€涓殣钘忓眰鐨勭嚎鎬у洖褰抧n妯″瀷

    def forward(self, x):
        y = self.linear(x)
        return y
    
net = LinearNet(num_inputs)
print(net)

运行:

LinearNet(
  (linear): Linear(in_features=2, out_features=1, bias=True)
)


    
# ways to init a multilayer network
# method one
net = nn.Sequential(
    nn.Linear(num_inputs, 1)
    # other layers can be added here
    )

# method two
net = nn.Sequential()
net.add_module('linear', nn.Linear(num_inputs, 1))
# net.add_module ......

# method three
from collections import OrderedDict
net = nn.Sequential(OrderedDict([
          ('linear', nn.Linear(num_inputs, 1))
          # ......
        ]))

print(net)
print(net[0])

运行:

LinearNet(
  (linear): Linear(in_features=2, out_features=1, bias=True)
)

初始化模型参数

from torch.nn import init

init.normal_(net[0].weight, mean=0.0, std=0.01)
init.constant_(net[0].bias, val=0.0)  # or you can use `net[0].bias.data.fill_(0)` to modify it directly
#Parameter containing:
#tensor([0.], requires_grad=True)

for param in net.parameters():
    print(param)
#Parameter containing:
#tensor([[-0.0142, -0.0161]], requires_grad=True)
#Parameter containing:
#tensor([0.], requires_grad=True)    

定义损失函数

loss = nn.MSELoss()    # nn built-in squared loss function
                       # function prototype: `torch.nn.MSELoss(size_average=None, reduce=None, reduction='mean')`

定义优化函数

import torch.optim as optim

optimizer = optim.SGD(net.parameters(), lr=0.03)   # built-in random gradient descent function
print(optimizer)  # function prototype: `torch.optim.SGD(params, lr=, momentum=0, dampening=0, weight_decay=0, nesterov=False)`

运行:

SGD (
Parameter Group 0
    dampening: 0
    lr: 0.03
    momentum: 0
    nesterov: False
    weight_decay: 0
)

训练

num_epochs = 3
for epoch in range(1, num_epochs + 1):
    for X, y in data_iter:
        output = net(X)
        l = loss(output, y.view(-1, 1))
        optimizer.zero_grad() # reset gradient, equal to net.zero_grad()
        l.backward()
        optimizer.step()
    print('epoch %d, loss: %f' % (epoch, l.item()))

运行:

epoch 1, loss: 0.000307
epoch 2, loss: 0.000117
epoch 3, loss: 0.000090
# result comparision
dense = net[0]
print(true_w, dense.weight.data)
print(true_b, dense.bias.data)

运行:

[2, -3.4] tensor([[ 2.0005, -3.3996]])
4.2 tensor([4.2005])

两种实现方式的比较

  1. 从零开始的实现(推荐用来学习)
    能够更好的理解模型和神经网络底层的原理
  2. 使用pytorch的简洁实现
    能够更加快速地完成模型的设计与实现

softmax和分类模型

内容包括:

  1. softmax回归的基本概念
  2. 如何获取Fashion-MNIST数据集和读取数据
  3. softmax回归模型的从零开始实现,实现一个对Fashion-MNIST训练集中的图像数据进行分类的模型
  4. 使用pytorch重新实现softmax回归模型

1.softmax回归的基本概念

交叉熵损失函数

模型训练和预测

2.获取Fashion-MNIST训练集和读取数据

get dataset

3.softmax从零开始的实现

获取训练集数据和测试集数据

模型参数初始化

对多维Tensor按维度操作

定义softmax操作

softmax回归模型

定义损失函数

定义准确率

训练模型

模型预测

4.softmax的简洁实现

初始化参数和获取数据

定义网络模型

初始化模型参数

定义损失函数

定义优化函数

训练

发布了47 篇原创文章 · 获赞 5 · 访问量 1905

猜你喜欢

转载自blog.csdn.net/Pang_ling/article/details/104305608