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