首页 > 其他分享 >《PyTorch深度学习实践》-刘二大人 第五讲

《PyTorch深度学习实践》-刘二大人 第五讲

时间:2022-10-20 20:15:11浏览次数:59  
标签:__ linear 刘二 torch 第五 PyTorch nn model class

 1 import torch
 2 
 3 # 1prepare dataset
 4 # x,y是矩阵,3行1列 也就是说总共有3个数据,每个数据只有1个特征
 5 x_data = torch.tensor([[1.0], [2.0], [3.0]])
 6 y_data = torch.tensor([[2.0], [4.0], [6.0]])
 7 
 8 # 2design model using class
 9 """
10 our model class should be inherit from nn.Module, which is base class for all neural network modules.
11 member methods __init__() and forward() have to be implemented
12 class nn.linear contain two member Tensors: weight and bias
13 class nn.Linear has implemented the magic method __call__(),which enable the instance of the class can
14 be called just like a function.Normally the forward() will be called 
15 """
16 class LinearModel(torch.nn.Module):
17     def __init__(self):
18         super(LinearModel, self).__init__()
19         # (1,1)是指输入x和输出y的特征维度,这里数据集中的x和y的特征都是1维的
20         # 该线性层需要学习的参数是w和b  获取w/b的方式分别是~linear.weight/linear.bias
21         self.linear = torch.nn.Linear(1, 1)
22 
23     def forward(self, x):
24         y_pred = self.linear(x)
25         return y_pred
26 
27 model = LinearModel()
28 
29 # 3construct loss and optimizer
30 # criterion = torch.nn.MSELoss(size_average = False)
31 criterion = torch.nn.MSELoss(reduction='sum')
32 optimizer = torch.optim.SGD(model.parameters(), lr=0.01)  # model.parameters()自动完成参数的初始化操作
33 
34 # 4training cycle forward, backward, update
35 for epoch in range(100):
36     y_pred = model(x_data)  # forward:predict
37     loss = criterion(y_pred, y_data)  # forward: loss
38     print(epoch, loss.item())
39 
40     optimizer.zero_grad()  # the grad computer by .backward() will be accumulated. so before backward, remember set the grad to zero
41     loss.backward()  # backward: autograd,自动计算梯度
42     optimizer.step()  # update 参数,即更新w和b的值
43 
44 print('w = ', model.linear.weight.item())
45 print('b = ', model.linear.bias.item())
46 
47 x_test = torch.tensor([[4.0]])
48 y_test = model(x_test)
49 print('y_pred = ', y_test.data)

 

标签:__,linear,刘二,torch,第五,PyTorch,nn,model,class
From: https://www.cnblogs.com/zhouyeqin/p/16811083.html

相关文章

  • 《PyTorch深度学习实践》-刘二大人 第六讲
    1importtorch2importtorch.nn.functionalasF34#1preparedataset5x_data=torch.Tensor([[1.0],[2.0],[3.0]])6y_data=torch.Tensor([[0],[0......
  • 第五届浙江省大学生网络与信息安全竞赛--吃豆人
    第一步:先看题目题目描述:吃豆人,吃豆豆,一起来玩吃豆人吧! 题目没什么重要的信息,就是让我们玩游戏,我们先玩一把,输了,发现也没什么变化然后F12观察一下,看见在index.js里面有......
  • Python第五章
    1、实例1:使用字符串拼接输出一个关于程序员的笑话代码:programmer_1='程序员甲:搞IT太辛苦了,我想换行……怎么办?'programmer_2='程序员乙:敲一下回车键'print(progra......
  • SDN第五次实验
    实验5:开源控制器实践——POX一、实验目的1、能够理解POX控制器的工作原理;2、通过验证POX的forwarding.hub和forwarding.l2_learning模块,初步掌握POX控制器的使用方法;......
  • 《PyTorch深度学习实践》-刘二大人 第三讲
    #梯度下降法frommatplotlibimportpyplotasplt#preparethetrainingsetx_data=[1.0,2.0,3.0]y_data=[2.0,4.0,6.0]#initialguessofweightw=......
  • 《PyTorch深度学习实践》-刘二大人 第二讲
    刘二大人的Pytorch保姆式教程。我觉得算0基础学Pytorch吧,从我现在的基础看就是比较easy的程度,正和我意~课堂练习:importnumpyasnpimportmatplotlib.pyplotasplt......
  • 安装Pytorch
    下面三种需求都是可以尝试的:错误1:AssertionError:TorchnotcompiledwithCUDAenabled错误2:torch.cuda.is_available() 输出false需求3:就是想安装Pytorch 请......
  • Java第五讲异常处理总结
    1.在运行上述代码时javac产生idiv字节码指令,在运行下面的程序时javac产生ddiv字节指令,导致了两段代码运行结果不同。2.      3.finally语句块一定会执行吗......
  • pytorch安装gpu版本
    pipinstalltorch==1.8.1+cu111torchvision==0.9.1+cu111torchaudio==0.8.1-fhttps://download.pytorch.org/whl/torch_stable.html-ihttps://pypi.tuna.tsinghua.e......
  • 《MiniPRO H750开发指南》第五十六章 串口IAP实验
    第五十六章串口IAP实验​IAP,即在应用编程,通俗地说法就是“程序升级”。产品阶段设计完成后,在脱离实验室的调试环境下,如果想对产品做功能升级或BUG修复会十分麻烦,如果硬件支......