摘要:
# 4.7.1 前向传播 整节理论,详见书本。 # 4.7.2 前向传播计算图 整节理论,详见书本。 # 4.7.3 反向传播 整节理论,详见书本。 # 4.7.4 训练神经网络 整节理论,详见书本。 # 练习 (1)假设一些标量函数 $X$ 的输入 $X$ 是 $n\times m$ 矩阵。$f$ 阅读全文
posted @ 2023-09-06 09:33
AncilunKiang
阅读(135)
评论(0)
推荐(0)
摘要:
```python import torch from torch import nn from d2l import torch as d2l ``` # 4.6.1 重新审视过拟合 整节理论,详见书本。 # 4.6.2 扰动的稳健性 整节理论,详见书本。 # 4.6.3 实践中的暂退法 整节理论 阅读全文
posted @ 2023-09-06 09:29
AncilunKiang
阅读(171)
评论(0)
推荐(0)
摘要:
# 4.5.1 范数与权重衰减 整节理论,详见书本。 # 4.5.2 高维线性回归 ```python %matplotlib inline import torch from torch import nn from d2l import torch as d2l ``` ```python # 阅读全文
posted @ 2023-09-06 09:25
AncilunKiang
阅读(219)
评论(0)
推荐(0)