Fills the input Tensor with values drawn from the normal distribution
Arguments
- tensor
an n-dimensional Tensor
- mean
the mean of the normal distribution
- std
the standard deviation of the normal distribution
Examples
if (torch_is_installed()) {
w <- torch_empty(3, 5)
nn_init_normal_(w)
}
#> torch_tensor
#> 0.4736 -2.1344 -0.6992 -1.2831 1.2805
#> -0.6420 0.1064 -0.1410 0.4427 3.7068
#> 1.2676 -0.0129 -1.1165 -0.0925 -1.5284
#> [ CPUFloatType{3,5} ]