(self, x)
| 260 | self.layer2 = torch.nn.Linear(HIDDEN_SIZE, DIM_OUT) |
| 261 | |
| 262 | def forward(self, x): |
| 263 | x = self.layer1(x) |
| 264 | x = self.relu(x) |
| 265 | x = self.layer2(x) |
| 266 | return x |
| 267 | |
| 268 | |
| 269 | some_input = torch.randn(BATCH_SIZE, DIM_IN, requires_grad=False) |
nothing calls this directly
no outgoing calls
no test coverage detected