摘要: ResNet网络 一.手写ResNet网络 (1)对于残差块有两种: 1.有1*1卷积层 Y=Y+conv_1x1(X) 2.无1*1卷积层 Y=Y+X (2)整体ResNet架构 import torch from d2l import torch as d2l from torch import 阅读全文
posted @ 2025-10-18 15:56 Annaprincess 阅读(6) 评论(0) 推荐(0)