%matplotlib inline
import random
import torch
from d2l import torch as d2l
#函数功能:根据“y=Xw+b+噪声”这个线性模型生成一个人造数据集
def synthetic_data(w, b, num_examples):
#X是均值为0,方差为1的大小为(num_examples, len(w))的向量
X = torch.normal(0, 1, (num_examples, len(w)))
#y=Xw+b+噪声
y = torch.matmul(X, w) + b
y += torch.normal(0, 0.01, y.shape)
return X, y.reshape((-1, 1))
#真实值w
true_w = torch.tensor([2, -3.4])
#真实值b
true_b = 4.2
#根据函数计算特征矩阵和标签向量
features, labels = synthetic_data(true_w, true_b, 1000)
#函数功能:特征矩阵、标签向量作为输入,生成多个大小为batch_size大小的小批量batch_indices
def data_iter(batch_size, features, labels):
num_examples = len(features)
indices = list(range(num_examples))
# 打乱样本顺序,保证随机存取
random.shuffle(indices)
#每次循环从i----i+batch_size的下标中获取batch_size个样本,赋值给batch_indices作为一个小批量
for i in range(0, num_examples, batch_size):
batch_indices = torch.tensor(
indices[i: min(i + batch_size, num_examples)])
#对每个小批量batch_indices计算其特征矩阵、标签向量
yield features[batch_indices], labels[batch_indices]
#定义初始化模型参数
w = torch.normal(0, 0.01, size=(2,1), requires_grad=True)
b = torch.zeros(1, requires_grad=True)
#定义模型
def linreg(X, w, b):
"""线性回归模型"""
return torch.matmul(X, w) + b
#定义损失函数
def squared_loss(y_hat, y):
"""均方损失"""
return (y_hat - y.reshape(y_hat.shape)) ** 2 / 2
#定义优化算法:在每一步中,使用从数据集中随机抽取的一个小批量,然后根据参数计算损失的梯度
def sgd(params, lr, batch_size):
"""小批量随机梯度下降"""
with torch.no_grad():
for param in params:
param -= lr * param.grad / batch_size
param.grad.zero_()
#训练过程
lr = 0.03#lr是学习率
num_epochs = 3#num_epochs是训练过程的迭代次数
net = linreg
loss = squared_loss
for epoch in range(num_epochs):
for X, y in data_iter(batch_size, features, labels):
l = loss(net(X, w, b), y) # X和y的小批量损失
l.sum().backward() # l中的所有元素被加到一起,并以此函数计算关于[w,b]的梯度
sgd([w, b], lr, batch_size) # 使用参数w、b的梯度更新参数w、b
with torch.no_grad():
train_l = loss(net(features, w, b), labels)
#输出损失值
print(f'epoch {epoch + 1}, loss {float(train_l.mean()):f}')
注:初学者个人理解,如有问题,感谢指正。