Docs
API
conv = nn.ConvTranspose2d(1, 1, 3) t = Tensor.rand(1, 1, 4, 4) print(t.numpy())
t = conv(t) print(t.numpy())