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