(self, x)
| 38 | self.l1 = torch.nn.Linear(28 * 28, 10) |
| 39 | |
| 40 | def forward(self, x): |
| 41 | return F.relu(self.l1(x.view(x.size(0), -1))) |
| 42 | |
| 43 | def training_step(self, batch, batch_idx): |
| 44 | x, y = batch |
nothing calls this directly
no outgoing calls
no test coverage detected