Fills the input Tensor with values drawn from the uniform distribution
Examples
if (torch_is_installed()) {
w <- torch_empty(3, 5)
nn_init_uniform_(w)
}
#> torch_tensor
#> 0.3825 0.0021 0.5894 0.4259 0.2909
#> 0.5875 0.1445 0.2989 0.1422 0.2508
#> 0.5667 0.2262 0.2277 0.8593 0.6198
#> [ CPUFloatType{3,5} ]