(self)
| 25 | |
| 26 | class SimpleCNN(nn.Module): |
| 27 | def __init__(self): |
| 28 | super(SimpleCNN, self).__init__() |
| 29 | self.conv1 = nn.Conv2d(1, 32, 3, 1) |
| 30 | self.conv2 = nn.Conv2d(32, 64, 3, 1) |
| 31 | self.fc1 = nn.Linear(9216, 128) |
| 32 | self.fc2 = nn.Linear(128, 10) |
| 33 | |
| 34 | def forward(self, x): |
| 35 | x = self.conv1(x) |
nothing calls this directly
no outgoing calls
no test coverage detected