Unlimited learning, half price | 50% off

Last chance! 50% off unlimited learning

Sale ends in


torch (version 0.11.0)

nn_init_zeros_: Zeros initialization

Description

Fills the input Tensor with the scalar value 0

Usage

nn_init_zeros_(tensor)

Arguments

tensor

an n-dimensional tensor

Examples

Run this code
if (torch_is_installed()) {
w <- torch_empty(3, 5)
nn_init_zeros_(w)
}

Run the code above in your browser using DataLab