mirror of https://github.com/commaai/tinygrad.git
chans doesn't need to be in self
This commit is contained in:
parent
77251cc6c3
commit
816f648161
|
@ -25,9 +25,9 @@ class TinyBobNet:
|
|||
class TinyConvNet:
|
||||
def __init__(self):
|
||||
conv = 7
|
||||
self.chans = 4
|
||||
self.c1 = Tensor(layer_init_uniform(self.chans,1,conv,conv))
|
||||
self.l1 = Tensor(layer_init_uniform(((28-conv+1)**2)*self.chans, 128))
|
||||
chans = 4
|
||||
self.c1 = Tensor(layer_init_uniform(chans,1,conv,conv))
|
||||
self.l1 = Tensor(layer_init_uniform(((28-conv+1)**2)*chans, 128))
|
||||
self.l2 = Tensor(layer_init_uniform(128, 10))
|
||||
|
||||
def forward(self, x):
|
||||
|
|
Loading…
Reference in New Issue