GroupNorm
torch.nn.modules.normalization.GroupNorm
Applies Group Normalization over a mini-batch of inputs
Value parameters
- affine
-
a boolean value that when set to
true
, this module has learnable per-channel affine parameters initialized to ones (for weights) and zeros (for biases) - eps
-
a value added to the denominator for numerical stability
- numChannels
-
number of channels expected in input
- numGroups
-
number of groups to separate the channels into
Attributes
- Source
- GroupNorm.scala
- Graph
-
- Supertypes
-
trait TensorModule[ParamType]trait HasWeight[ParamType]class Moduleclass Objecttrait Matchableclass AnyShow all
Members list
Value members
Concrete methods
Attributes
- Source
- GroupNorm.scala
Attributes
- Definition Classes
- Source
- GroupNorm.scala
Inherited methods
Attributes
- Inherited from:
- Module
- Source
- Module.scala
Attributes
- Inherited from:
- Module
- Source
- Module.scala
Attributes
- Inherited from:
- Module
- Source
- Module.scala
Attributes
- Inherited from:
- Module
- Source
- Module.scala
Attributes
- Inherited from:
- Module
- Source
- Module.scala
Attributes
- Inherited from:
- Module
- Source
- Module.scala
Attributes
- Inherited from:
- Module
- Source
- Module.scala
Attributes
- Inherited from:
- Module
- Source
- Module.scala
Attributes
- Inherited from:
- Module
- Source
- Module.scala
Attributes
- Inherited from:
- Module
- Source
- Module.scala
Attributes
- Inherited from:
- Module
- Source
- Module.scala
Attributes
- Inherited from:
- Module
- Source
- Module.scala
Attributes
- Inherited from:
- Module
- Source
- Module.scala
Adds a buffer to the module.
Attributes
- Inherited from:
- Module
- Source
- Module.scala
Attributes
- Inherited from:
- Module
- Source
- Module.scala
Attributes
- Inherited from:
- Module
- Source
- Module.scala
Attributes
- Inherited from:
- Module
- Source
- Module.scala
Attributes
- Inherited from:
- Module
- Source
- Module.scala
Returns a string representation of the object.
Returns a string representation of the object.
The default representation is platform dependent.
Attributes
- Returns
-
a string representation of the object.
- Definition Classes
- Inherited from:
- TensorModule
- Source
- Module.scala
In this article