当前位置:   article > 正文

deep learning 代码笔记

deep learning 代码笔记

1.

pandas数据读取和预处理

  1. # import pandas and load dataset
  2. import pandas as pd
  3. names = ['Sex', 'Length', 'Diameter', 'Height', 'Whole_weight',
  4. 'Shucked_weight', 'Viscera_weight', 'Shell_weight', 'Rings']
  5. data = pd.read_csv(data_file, header=None, names=names)
  6. print(data) # [4177 rows x 9 columns]
  7. type(data) # pandas.core.frame.DataFrame
  8. data.isnull().values.any() # False (check if there are any missing values)
  9. data.isnull().sum() # total no. of missing values in each column
  10. data.isnull().sum().sum() # total no. of missing values in entire dataframe
  11. data.dtypes
  12. data["Rings"] = data["Rings"].astype(float) # convert from int64 to float64
  13. data["Sex"] = data["Sex"].astype("category") # convert from object to category
  14. data["Sex"]
  15. data.dtypes
  16. data.describe() # summary of data
  17. data["Height"].describe() # summary of variable "Height" only
  18. data["Sex"].value_counts() # summary of variable "Sex"

torch变量size

  1. import torch
  2. X = torch.arange(24).reshape(2, 3, 4)
  3. len(X)
  4. #output: 2

len (X)总是返回第0轴的长度。

What are the shapes of summation outputs along axis 0, 1, and 2?
  1. X.sum(axis=0).shape # torch.Size([3, 4])
  2. X.sum(axis=1).shape # torch.Size([2, 4])
  3. X.sum(axis=2).shape # torch.Size([2, 3])

梯度计算

f ( x ) = ||  x||   2 的梯度
自动微分法计算:
  1. import torch
  2. x = torch.tensor([1.0, 2.0], requires_grad=True)
  3. y = torch.norm(x) # y is a fn of x
  4. y # tensor(2.2361), torch.sqrt(torch.tensor(5.0))
  5. #使用backward方法对y进行求导,即计算y相对于x的梯度
  6. y.backward() # take gradient of y w.r.t. x by backward method
  7. x.grad # tensor([0.4472, 0.8944])
  8. #检查计算得到的梯度是否与手动计算的梯度相等,结果应为tensor([True, True])
  9. x.grad == x/torch.norm(x) # tensor([True, True])
  10. x = torch.tensor([0.0, 0.0], requires_grad=True)
  11. y = torch.norm(x)
  12. y.backward() #对y进行求导。
  13. x.grad
  14. #应为tensor([nan, nan]),因为在零向量上无法计算标准化。
  15. #实际输出:tensor([0., 0.])
  16. x = torch.tensor(0.0, requires_grad=True)
  17. y = torch.abs(x)
  18. y.backward()
  19. x.grad
  20. #输出:tensor(0.)

因此,梯度是x的单位向量。在x = 0处的梯度在数学上是未定义的,但是自动微分返回零。要小心,在这种情况下可能会出现差异。

示例的数量不能除以批处理大小?

  1. import random
  2. import torch
  3. from d2l import torch as d2l
  4. data = d2l.SyntheticRegressionData(w=torch.tensor([2, -3.4]), b=4.2)
  5. data.num_train # 1000
  6. len(data.train_dataloader()) # 32, 1000 / 32 = 31.25
  7. X, y = next(iter(data.train_dataloader()))
  8. X.shape # torch.Size([32, 2])
  9. y.shape # torch.Size([32, 1])
  10. for i, batch in enumerate(data.train_dataloader()):
  11. print(i, len(batch[0]))
  12. # first 31 batches contain 32 examples each, last batch contain only 8
  13. # https://pytorch.org/docs/stable/data.html
  14. @d2l.add_to_class(d2l.DataModule) #@save
  15. def get_tensorloader(self, tensors, train, indices=slice(0, None)):
  16. tensors = tuple(a[indices] for a in tensors)
  17. dataset = torch.utils.data.TensorDataset(*tensors)
  18. return torch.utils.data.DataLoader(dataset, self.batch_size, shuffle=train,
  19. drop_last=True)
  20. # drop_last (bool, optional) – set to True to drop last incomplete batch
  21. # if dataset size is not divisible by batch size. If False and dataset size is
  22. # not divisible by batch size, then last batch will be smaller. (default: False)
  23. len(data.train_dataloader()) # 31, 1000 // 32 = 31
  24. for i, batch in enumerate(data.train_dataloader()):
  25. print(i, len(batch[0]))
  26. # only 31 batches containing 32 examples each, last batch with 8 is dropped
默认情况下,最后一个小批处理的尺寸将更小。例如,如果将1000个训练例子划分为32的小批,那么前31批将包含32个,而最后一批只有8个。
解决?:
drop last参数设置为True,以删除最后一个不完整的批处理。

2.

不同loss函数下的线性回归实现

  1. import random
  2. import torch
  3. from torch import nn
  4. from d2l import torch as d2l
  5. #数据
  6. data = d2l.SyntheticRegressionData(w=torch.tensor([2, -3.4]), b=4.2)
  7. # MSE loss (Section 3.5.2 "Defining the Loss Function" of textbook)
  8. @d2l.add_to_class(d2l.LinearRegression) #@save
  9. #使用了@d2l.add_to_class装饰器来将loss方法添加到LinearRegression类中。
  10. #然后,在loss方法中,使用nn.MSELoss来计算预测值y_hat和真实值y之间的均方误差损失。
  11. def loss(self, y_hat, y):
  12. fn = nn.MSELoss()
  13. return fn(y_hat, y)
  14. model = d2l.LinearRegression(lr=0.03)
  15. trainer = d2l.Trainer(max_epochs=5)
  16. trainer.fit(model, data)
  17. w, b = model.get_w_b()
  18. print(f'error in estimating w: {data.w - w.reshape(data.w.shape)}')
  19. print(f'error in estimating b: {data.b - b}')
  20. # Change loss fn to L1Loss ( https://pytorch.org/docs/stable/nn.html#loss-functions )
  21. @d2l.add_to_class(d2l.LinearRegression) #@save
  22. def loss(self, y_hat, y):
  23. fn = nn.L1Loss()
  24. return fn(y_hat, y)
  25. model2 = d2l.LinearRegression(lr=0.03)
  26. trainer = d2l.Trainer(max_epochs=5)
  27. trainer.fit(model2, data)
  28. w, b = model2.get_w_b()
  29. print(f'error in estimating w: {data.w - w.reshape(data.w.shape)}')
  30. print(f'error in estimating b: {data.b - b}')

MSE损失(通过取目标和输出之间的差值的平方)对离群值更敏感,而L1损失只考虑差值的绝对大小,并且对离群值更有弹性。

Huber的损失结合了MSE和L1损失函数的最佳特性。当目标和输出之间的差值较小时,它减少到MSE损失,但当差值较大时,它等于L1损失。这样,当远离收敛时,它对L1损失等异常值具有鲁棒性,但在接近收敛时,它更稳定,并像MSE损失一样平滑收敛。它在所有点上也都是可微的。δ参数还允许用户控制损失函数对误差大小的敏感性。

交叉熵

参数化的ReLU

pReLU比ReLU更灵活,因为它有一个额外的参数α,可以与模型中的其他参数一起进行训练。当对于x < 0的ReLU函数消失时,对于x < 0的pReLU是非零的,它解决了负输入的“垂死”ReLU问题。它可能比ReLU更有效地解决消失的梯度。

3.

MLP的等价解

MLP中变量的依赖性

dropout

dropout和重量衰减可以同时应用,以减少过拟合。权值衰减限制了权值的大小,而dropout则通过防止对特定节点的过度依赖而提高了泛化。与只使用权重衰减时相比,当dropout与权重衰减一起使用时,验证损失和精度的曲线更平滑,波动更小。

4.

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/凡人多烦事01/article/detail/124300
推荐阅读
相关标签
  

闽ICP备14008679号