(self, x)
| 104 | ) |
| 105 | |
| 106 | def forward(self, x): |
| 107 | x = self.flatten(x) |
| 108 | logits = self.linear_relu_stack(x) |
| 109 | return logits |
| 110 | |
| 111 | model = NeuralNetwork().to(device) |
| 112 | print(model) |
nothing calls this directly
no outgoing calls
no test coverage detected