• pytorch框架下的逻辑回归代码解读


    1. # -*- coding: utf-8 -*-
    2. """
    3. # @file name : lesson-05-Logsitic-Regression.py
    4. # @author : tingsongyu
    5. # @date : 2019-09-03 10:08:00
    6. # @brief : 逻辑回归模型训练
    7. """
    8. import torch
    9. import torch.nn as nn
    10. import matplotlib.pyplot as plt
    11. import numpy as np
    12. torch.manual_seed(10)
    13. # ============================ step 1/5 生成数据 ============================
    14. sample_nums = 100
    15. mean_value = 1.7
    16. bias = 1
    17. n_data = torch.ones(sample_nums, 2)
    18. x0 = torch.normal(mean_value * n_data, 1) + bias # 类别0 数据 shape=(100, 2)
    19. y0 = torch.zeros(sample_nums) # 类别0 标签 shape=(100, 1)
    20. x1 = torch.normal(-mean_value * n_data, 1) + bias # 类别1 数据 shape=(100, 2)
    21. y1 = torch.ones(sample_nums) # 类别1 标签 shape=(100, 1)
    22. train_x = torch.cat((x0, x1), 0)
    23. train_y = torch.cat((y0, y1), 0)
    24. # ============================ step 2/5 选择模型 逻辑回归模型 nn.module
    25. ============================
    26. class LR(nn.Module):
    27. def __init__(self):
    28. super(LR, self).__init__()
    29. self.features = nn.Linear(2, 1)
    30. self.sigmoid = nn.Sigmoid()
    31. def forward(self, x):
    32. x = self.features(x)
    33. x = self.sigmoid(x)
    34. return x
    35. lr_net = LR() # 实例化逻辑回归模型
    36. # ============================ step 3/5 选择损失函数 二分类交叉熵函数 ============================
    37. loss_fn = nn.BCELoss()
    38. # ============================ step 4/5 选择优化器 随机梯度下降法 ============================
    39. lr = 0.01 # 学习率
    40. optimizer = torch.optim.SGD(lr_net.parameters(), lr=lr, momentum=0.9)
    41. # ============================ step 5/5 模型训练 ============================
    42. for iteration in range(1000):
    43. # 前向传播
    44. y_pred = lr_net(train_x)
    45. # 计算 loss
    46. loss = loss_fn(y_pred.squeeze(), train_y)
    47. # 反向传播
    48. loss.backward()
    49. # 更新参数
    50. optimizer.step()
    51. # 清空梯度
    52. optimizer.zero_grad()
    53. # 绘图
    54. if iteration % 20 == 0:
    55. mask = y_pred.ge(0.5).float().squeeze() # 以0.5为阈值进行分类
    56. correct = (mask == train_y).sum() # 计算正确预测的样本个数
    57. acc = correct.item() / train_y.size(0) # 计算分类准确率
    58. plt.scatter(x0.data.numpy()[:, 0], x0.data.numpy()[:, 1], c='r', label='class 0')
    59. plt.scatter(x1.data.numpy()[:, 0], x1.data.numpy()[:, 1], c='b', label='class 1')
    60. w0, w1 = lr_net.features.weight[0]
    61. w0, w1 = float(w0.item()), float(w1.item())
    62. plot_b = float(lr_net.features.bias[0].item())
    63. plot_x = np.arange(-6, 6, 0.1)
    64. plot_y = (-w0 * plot_x - plot_b) / w1
    65. plt.xlim(-5, 7)
    66. plt.ylim(-7, 7)
    67. plt.plot(plot_x, plot_y)
    68. plt.text(-5, 5, 'Loss=%.4f' % loss.data.numpy(), fontdict={'size': 20, 'color': 'red'})
    69. plt.title("Iteration: {}\nw0:{:.2f} w1:{:.2f} b: {:.2f} accuracy:{:.2%}".format(iteration, w0, w1, plot_b, acc))
    70. plt.legend()
    71. plt.show()
    72. plt.pause(0.5)
    73. if acc > 0.99:
    74. break

    注:代码过程分为数据,模型,损失函数,优化器以及迭代过程

    数据:随机生成

    模型:nn.Module来构建逻辑回归模型类

    损失函数:二分类交叉熵函数

    优化器:随机梯度下降法

    迭代过程:前向传播,损失函数计算,反向传播,更新参数

    迭代器中,设置了掩码,即误差小于0.5置为true,然后统计分类正确的个数,然后根据正确率达到0.99,结束流程

  • 相关阅读:
    UMLChina建模知识竞赛第3赛季第13轮:SysML和系统工程知识
    kotlin--3.集合操作
    霍尔效应风扇驱动IC
    LeetCode //C - 106. Construct Binary Tree from Inorder and Postorder Traversal
    python pandas 数据排序
    【Python自学笔记】报错No module Named Wandb
    详解:取地址操作符(&)及解引用操作符(*)
    【校招VIP】【约起来】产品PRD文档:重点在于能约起来的类别
    【odoo17】富文本小部件widget=“html“的使用
    Go 如何对多个网络命令空间中的端口进行监听
  • 原文地址:https://blog.csdn.net/weixin_68063596/article/details/137797241