(self)
| 16 | |
| 17 | class TinyBobNet: |
| 18 | def __init__(self): |
| 19 | self.l1 = Tensor.scaled_uniform(784, 128) |
| 20 | self.l2 = Tensor.scaled_uniform(128, 10) |
| 21 | |
| 22 | def parameters(self): |
| 23 | return get_parameters(self) |
nothing calls this directly
no test coverage detected