Docs
API
conv = nn.Conv2d(1, 1, 3) t = Tensor.rand(1, 1, 4, 4) console.log(t.numpy())
t = conv(t) console.log(t.numpy())