Function torch::nn::functional::batch_norm¶
Defined in File batchnorm.h
Function Documentation¶
-
inline Tensor torch::nn::functional::batch_norm(const Tensor &input, const Tensor &running_mean, const Tensor &running_var, const BatchNormFuncOptions &options = {})¶
See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.batch_norm about the exact behavior of this functional.
See the documentation for
torch::nn::functional::BatchNormFuncOptions
class to learn what optional arguments are supported for this functional.Example:
namespace F = torch::nn::functional; F::batch_norm(input, mean, variance, F::BatchNormFuncOptions().weight(weight).bias(bias).momentum(0.1).eps(1e-05).training(false));