(self, x)
| 166 | self.fc3 = nn.Linear(84, 10) |
| 167 | |
| 168 | def forward(self, x): |
| 169 | x = self.pool(F.relu(self.conv1(x))) |
| 170 | x = self.pool(F.relu(self.conv2(x))) |
| 171 | x = x.view(-1, 16 * 4 * 4) |
| 172 | x = F.relu(self.fc1(x)) |
| 173 | x = F.relu(self.fc2(x)) |
| 174 | x = self.fc3(x) |
| 175 | return x |
| 176 | |
| 177 | |
| 178 | net = Net() |
nothing calls this directly
no outgoing calls
no test coverage detected