Fills the input Tensor
with a (semi) orthogonal matrix, as
described in Exact solutions to the nonlinear dynamics of learning in deep linear neural networks
- Saxe, A. et al. (2013). The input tensor must have
at least 2 dimensions, and for tensors with more than 2 dimensions the
trailing dimensions are flattened.
Examples
if (torch_is_installed()) {
w <- torch_empty(3, 5)
nn_init_orthogonal_(w)
}
#> torch_tensor
#> -0.1751 -0.3815 -0.6039 -0.6756 -0.0514
#> 0.3610 -0.7886 -0.1353 0.4635 0.1211
#> -0.4145 -0.4594 0.6267 -0.1594 -0.4460
#> [ CPUFloatType{3,5} ]