PyTorch和卷积神经网络

时间:2018-02-28 12:33:06

标签: python neural-network pytorch

我有一个图像输入340px * 340px,我想将它分类为2个类。 我想创建卷积神经网络(PyTorch框架)。我对图层的输入和输出有问题。

class Net(nn.Module):

    def __init__(self):
        super(Net, self).__init__()
        # 3 channels (RGB), kernel=5, but i don't understand why 6. 
        self.conv1 = nn.Conv2d(3, 6, 5)
        self.pool = nn.MaxPool2d(2, 2)
        #why 16?
        self.conv2 = nn.Conv2d(6, 16, 5)
        #why 107584 = 328*328
        self.fc1 = nn.Linear(107584, 120)
        self.fc2 = nn.Linear(120, 84)
        self.fc3 = nn.Linear(84, 2)

    def forward(self, x):
        x = self.pool(F.relu(self.conv1(x)))
        x = self.pool(F.relu(self.conv2(x)))
        # i dont understand this line
        x = x.view(x.size(0),  -1)
        x = F.relu(self.fc1(x))
        x = F.relu(self.fc2(x))
        x = self.fc3(x)
        return x

网络是否正确?

1 个答案:

答案 0 :(得分:1)

  

#3频道(RGB),内核= 5,但我不明白为什么6.

Conv2d的第二个参数是out_channels。在卷积层中,您可以任意定义多个输出通道。所以它设置为6,因为有人将其设置为6.

  

#为什么16?

与上述相同。

  

#why 107584 = 328 * 328

  

\#我不明白这一行

Tensor.view()返回一个新张量,其数据与自张量相同,但大小不同。 x = x.view(x.size(0), -1): - -1表示"推断其他维度"所以,你强迫Tensor为[1,15 * 164 * 164] => [1,403440]。

403440也是self.fc1 = nn.Linear(107584, 120)的正确值,而不是107584。