(self, x)
| 58 | ) |
| 59 | |
| 60 | def forward(self, x): |
| 61 | x = self.flatten(x) |
| 62 | logits = self.linear_relu_stack(x) |
| 63 | return logits |
| 64 | |
| 65 | ############################################## |
| 66 | # We create an instance of ``NeuralNetwork``, and move it to the ``device``, and print |
nothing calls this directly
no outgoing calls
no test coverage detected