美文网首页
线性回归 2020-02-11

线性回归 2020-02-11

作者: allen成 | 来源:发表于2020-02-14 19:12 被阅读0次

    3.1 线性回归概念

    线性回归输出是一个连续值,因此适用于回归问题。回归问题在实际生活中很常见,如预测房屋价格、气温、销售额等连续值的问题。与回归问题不同,分类问题中模型的最终输出是一个离散值。我们所说的图像分类、垃圾邮件识别、疾病检测等输出为离散值的问题都属于分类问题的范畴。softmax回归则适用于分类问题。
    由于线性回归和softmax回归都是单层神经网络,它们涉及的概念和技术同样适用于大多数的深度学习模型。我们首先以线性回归为例,介绍大多数深度学习模型的基本要素和表示方法。

    3.1.1线性回归的基本要素

    我们以一个简单的房屋价格预测作为例子来解释线性回归的基本要素。这个应用的目标是预测一栋房子的售出价格(元)。我们知道这个价格取决于很多因素,如房屋状况、地段、市场行情等。为了简单起见,这里我们假设价格只取决于房屋状况的两个因素,即面积(平方米)和房龄(年)。接下来我们希望探索价格与这两个因素的具体关系。

    3.1.1.1模型

    设房屋的面积为x_1,房龄为x_2,售出价格为y。我们需要建立基于输入x_1x_2来计算输出y的表达式,也就是模型(model)。顾名思义,线性回归假设输出与各个输入之间是线性关系:
    \hat y=x_1w_1+x_2w_2+b
    其中w_1w_2是权重(weight),b是偏差(bias),且均为标量。它们是线性回归模型的参数(parameter)。模型输出 \hat y 是线性回归对真实价格y的预测或估计。我们通常允许它们之间有一定误差。

    3.1.1.2. 模型训练

    接下来我们需要通过数据来寻找特定的模型参数值,使模型在数据上的误差尽可能小。这个过程叫作模型训练(model training)。下面我们介绍模型训练所涉及的3个要素。

    3.1.1.2.1训练数据

    我们通常收集一系列的真实数据,例如多栋房屋的真实售出价格和它们对应的面积和房龄。我们希望在这个数据上面寻找模型参数来使模型的预测价格与真实价格的误差最小。在机器学习术语里,该数据集被称为训练数据集(training data set)或训练集(training set),一栋房屋被称为一个样本(sample),其真实售出价格叫作标签(label),用来预测标签的两个因素叫作特征(feature)。特征用来表征样本的特点。
    假设我们采集的样本数为n,索引为i的样本的特征为x_1^{(i)}x_2^{(i)},标签为y(i)。对于索引为i的房屋,线性回归模型的房屋价格预测表达式为\hat y^{(i)} = x_1^{(i)}w_1 + x_2^{(i)}w_2 +b

    3.1.1.2.2损失函数

    在模型训练中,我们需要衡量价格预测值与真实值之间的误差。通常我们会选取一个非负数作为误差,且数值越小表示误差越小。一个常用的选择是平方函数。它在评估索引为i的样本误差的表达式为:
    ℓ^{(i)}(w_1,w_2,b)=\frac1n(\hat y^{(i)}-y^{(i)})^{2}
    其中常数 1/2 使对平方项求导后的常数系数为1,这样在形式上稍微简单一些。显然,误差越小表示预测价格与真实价格越相近,且当二者相等时误差为0。给定训练数据集,这个误差只与模型参数相关,因此我们将它记为以模型参数为参数的函数。在机器学习里,将衡量误差的函数称为损失函数(loss function)。这里使用的平方误差函数也称为平方损失(square loss)。
    通常,我们用训练数据集中所有样本误差的平均来衡量模型预测的质量,即
    ℓ(w_1,w_2,b) = \frac1n \sum_{i=1} ^n ℓ^{(i)}(w_1,w_2,b)= \frac1n \sum_{i=1} ^n\frac12(x_1^{(i)}w_1+x_2^{(i)}w_2+b-y^{(i)})^{2}
    在模型训练中,我们希望找出一组模型参数,记为w_1^*,w_2^*,b^*,来使训练样本平均损失最小:
    w_1^*w_2^*b^* = argmin

    3.1.1.2.3 优化函数 - 随机梯度下降

    当模型和损失函数形式较为简单时,上面的误差最小化问题的解可以直接用公式表达出来。这类解叫作解析解(analytical solution)。本节使用的线性回归和平方误差刚好属于这个范畴。然而,大多数深度学习模型并没有解析解,只能通过优化算法有限次迭代模型参数来尽可能降低损失函数的值。这类解叫作数值解(numerical solution)。 在求数值解的优化算法中,小批量随机梯度下降(mini-batch stochastic gradient descent)在深度学习中被广泛使用。它的算法很简单:先选取一组模型参数的初始值,如随机选取;接下来对参数进行多次迭代,使每次迭代都可能降低损失函数的值。在每次迭代中,先随机均匀采样一个由固定数目训练数据样本所组成的小批量(mini-batch) BB ,然后求小批量中数据样本的平均损失有关模型参数的导数(梯度),最后用此结果与预先设定的一个正数的乘积作为模型参数在本次迭代的减小量。
    (w,b) \leftarrow (w,b) - \frac \eta {|\beta|}\sum_{i\in\beta}∂_{(w,b)}{l^{(i)}}(w,b)
    学习率: η 代表在每次优化中,能够学习的步长的大小 批量大小: B 是小批量计算中的批量大小batch size 总结一下,优化函数的有以下两个步骤:

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

    矢量计算

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

    • 向量相加的一种方法是,将这两个向量按元素逐一做标量加法。
    • 向量相加的另一种方法是,将这两个向量直接做矢量加法。
    import torch
    import time
    # init variable a, b as 1000 dimension vector
    n = 1000
    a = torch.ones(n)
    b = torch.ones(n)
    
    # define a timer class to record time
    class Timer(object):
        """Record multiple running times."""
        def __init__(self):
            self.times = []
            self.start()
    
        def start(self):
            # start the timer
            self.start_time = time.time()
    
        def stop(self):
            # stop the timer and record time into a list
            self.times.append(time.time() - self.start_time)
            return self.times[-1]
    
        def avg(self):
            # calculate the average and return
            return sum(self.times)/len(self.times)
    
        def sum(self):
            # return the sum of recorded time
            return sum(self.times)
    

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

    timer = Timer()
    c = torch.zeros(n)
    for i in range(n):
        c[i] = a[i] + b[i]
    '%.5f sec' % timer.stop()
    

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

    timer.start()
    d = a + b
    '%.5f sec' % timer.stop()
    

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

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

    # 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__)
    

    生成数据集

    使用线性模型来生成数据集,生成一个1000个样本的数据集,下面是用来生成数据的线性关系:
    price=w_{area}\cdot{area}+w_{age}\cdot{age}+b

    # set input feature number 
    num_inputs = 2
    # set example number
    num_examples = 1000
    
    # set true weight and bias in order to generate corresponded label
    true_w = [2, -3.4]
    true_b = 4.2
    
    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))
        random.shuffle(indices)  # random read 10 samples
        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)
    b = torch.zeros(1, dtype=torch.float32)
    
    w.requires_grad_(requires_grad=True)
    b.requires_grad_(requires_grad=True)
    

    定义模型

    定义用来训练参数的训练模型:
    price=w_{area}\cdot{area}+w_{age}\cdot{age}+b

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

    定义损失函数

    我们使用的是均方误差损失函数:
    l^{(i)}(w,b)= \frac12(\hat{y}^{(i)}-y^{(i)})^2

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

    定义优化函数

    在这里优化函数使用的是小批量随机梯度下降:
    (w,b) \leftarrow(w,b)- \frac \eta {|\beta|}\sum_{i\in\beta}∂_{(w,b)}{l^{(i)}}(w,b)

    def sgd(params, lr, batch_size): 
        for param in params:
            param.data -= lr * param.grad / batch_size # ues .data to operate param without gradient track
    

    训练

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

    # 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()))
    
    w, true_w, b, true_b
    

    线性回归模型使用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
    

    定义模型

    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)`
    
        def forward(self, x):
            y = self.linear(x)
            return y
        
    net = LinearNet(num_inputs)
    print(net)
    
    # 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])
    

    初始化模型参数

    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
    
    for param in net.parameters():
        print(param)
    

    定义损失函数

    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)`
    

    训练

    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()))
    
    # result comparision
    dense = net[0]
    print(true_w, dense.weight.data)
    print(true_b, dense.bias.data)
    

    两种实现方式的比较

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

    相关文章

      网友评论

          本文标题:线性回归 2020-02-11

          本文链接:https://www.haomeiwen.com/subject/uhvffhtx.html