(self)
| 33 | |
| 34 | class CNN(nn.Module): |
| 35 | def __init__(self): |
| 36 | super(CNN, self).__init__() |
| 37 | self.conv1 = nn.Conv2d(3, 32, (3, 3)) |
| 38 | self.conv2 = nn.Conv2d(32, 32, (3, 3)) |
| 39 | self.conv3 = nn.Conv2d(32, 32, (3, 3)) |
| 40 | self.fc = nn.Linear(21632, 10) |
| 41 | |
| 42 | def forward(self, x): |
| 43 | x = self.conv1(x) |
nothing calls this directly
no outgoing calls
no test coverage detected