首页 > 解决方案 > 参数是如何传入构造函数的?

问题描述

这段代码:

class Net(nn.Module):
    def __init__(self):
        super(Net, self).__init__()

        self.conv1 = nn.Conv2d(1,6,5)
        self.conv2 = nn.Conv2d(6, 16, 5)
        self.fc1 = nn.Linear(16*5*5, 120)
        self.fc2 = nn.Linear(120, 84)
        self.fc3 = nn.Linear(84, 10)

     def forward(self, x):
            x = F.max_pool2d(F.relu(self.conv1(x)), (2,2))
            x = F.max_pool2d(F.relu(self.conv2(x)), 2)
            x = x.view(-1, self.num_flat_features(x))
            x = F.relu(self.fc1(x))
            x = F.relu(self.fc2(x))
            x = self.fc3(x)

            return x

    def num_flat_features(self, x):
        size = x.size()[1:]
        num_features = 1
        for s in size:
            num_features *= s

        return num_features

net = Net()

input = torch.randn(1,1,32,32)
out = net(input)

print(out)

我正在学习 python 并试图了解这个构造函数是如何工作的。我的问题是这两行:

input = torch.randn(1,1,32,32)
out = net(input)

初始化初始化中,我看不到“输入”是如何用于初始化的。

标签: python

解决方案


net = Net()

调用__init__不带参数的方法。

out = net(input)

使用as 参数调用该__call__方法。input由于Net没有实现这个,所以必须在基类中实现nn.Module

在这里您可以找到来源,nn.Module__call__使用inputas 参数定义。


推荐阅读