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