@@ -58,7 +58,7 @@ class InstanceNorm1d(_InstanceNorm):
5858 num_features: num_features from an expected input of size `batch_size x num_features x width`
5959 eps: a value added to the denominator for numerical stability. Default: 1e-5
6060 momentum: the value used for the running_mean and running_var computation. Default: 0.1
61- affine: a boolean value that when set to true, gives the layer learnable affine parameters.
61+ affine: a boolean value that when set to true, gives the layer learnable affine parameters. Default: False
6262
6363 Shape:
6464 - Input: :math:`(N, C, L)`
@@ -102,7 +102,7 @@ class InstanceNorm2d(_InstanceNorm):
102102 num_features: num_features from an expected input of size batch_size x num_features x height x width
103103 eps: a value added to the denominator for numerical stability. Default: 1e-5
104104 momentum: the value used for the running_mean and running_var computation. Default: 0.1
105- affine: a boolean value that when set to true, gives the layer learnable affine parameters.
105+ affine: a boolean value that when set to true, gives the layer learnable affine parameters. Default: False
106106
107107 Shape:
108108 - Input: :math:`(N, C, H, W)`
@@ -147,7 +147,7 @@ class InstanceNorm3d(_InstanceNorm):
147147 num_features: num_features from an expected input of size batch_size x num_features x depth x height x width
148148 eps: a value added to the denominator for numerical stability. Default: 1e-5
149149 momentum: the value used for the running_mean and running_var computation. Default: 0.1
150- affine: a boolean value that when set to true, gives the layer learnable affine parameters.
150+ affine: a boolean value that when set to true, gives the layer learnable affine parameters. Default: False
151151
152152 Shape:
153153 - Input: :math:`(N, C, D, H, W)`
0 commit comments