... self.conv3 = nn.Conv2d(in_channels, 3, 9, stride=1, padding=1) def forward(self, x): x = self.conv1(x) for i in range(self.n_dense_blocks): x = self.
確定! 回上一頁