pytorch笔记3.13
#linear module
#准备数据,定义模型,实例化模型,实例化优化器,实例化loss,循环进行梯度下降,参数更新。
import torch
import torch.nn as nn
from torch.optim import SGD
x = torch.rand([500,1])
y_true= 3
pytorch笔记3.13
#linear module
#准备数据,定义模型,实例化模型,实例化优化器,实例化loss,循环进行梯度下降,参数更新。
import torch
import torch.nn as nn
from torch.optim import SGD
x = torch.rand([500,1])
y_true= 3