Expand description
Batch Normalization layer with running statistics tracking.
Provides TensorBatchNorm — a full batch normalisation layer that
supports both training mode (batch statistics, running stat updates) and
inference mode (uses pre-accumulated running statistics). Learnable
affine parameters γ (gamma / scale) and β (beta / shift) are optional.
Structs§
- Batch
Norm Config - Configuration for
TensorBatchNorm. - Batch
Norm Stats - Aggregate statistics collected across
TensorBatchNorm::forwardcalls. - Tensor
Batch Norm - Batch normalisation layer.
Enums§
- Norm
Mode - Execution mode for batch normalisation.