GoolgeNet实战
1.GoolgeNet代码分析 1.1 Inception模块
class Inception(nn.Module):def __init__(self, in_channels, c1, c2, c3, c4):super(Inception, self).__init__()self.ReLU nn.ReLU()# 路线1,单11卷积层self.p1_1 nn.Conv2d(in_channelsin_channels, out_channelsc1…
2026/7/8 13:47:20