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