GoogleNet网络结构(代码)
inception块:
import torch
import torch.nn as nn
class InceptionBlock(nn.Module):#__init__ 方法:用于初始化模型的各个子模块def __init__ (self,in_channels,out_channels1,out_channels2,out_channels3,out_channels4):super(InceptionBlock,se…
2026/7/24 19:43:37