class LeNet(nn.Module): def __init__(self): super(LeNet, self).__init__() self.conv1 = nn.Conv2d(1, 6, 5, padding = 2) self.conv2 = nn.
確定! 回上一頁