Typedef torch::nn::InstanceNorm2dOptions#
Defined in File instancenorm.h
Typedef Documentation#
-
using torch::nn::InstanceNorm2dOptions = InstanceNormOptions#
Options for the
InstanceNorm2d
module.Example:
InstanceNorm2d model(InstanceNorm2dOptions(4).eps(0.5).momentum(0.1).affine(false).track_running_stats(true));