Docs
API
lin = nn.Linear(3, 4) t = Tensor.rand(2, 3) console.log(t.numpy())
t = lin(t) console.log(t.numpy())