(self, xb)
| 308 | self.bias = nn.Parameter(torch.zeros(10)) |
| 309 | |
| 310 | def forward(self, xb): |
| 311 | return xb @ self.weights + self.bias |
| 312 | |
| 313 | ############################################################################### |
| 314 | # Since we're now using an object instead of just using a function, we |
nothing calls this directly
no outgoing calls
no test coverage detected