mx.symbol.GroupNorm¶
Description¶
Group normalization.
The input channels are separated into num_groups groups, each containing num_channels / num_groups channels.
The mean and standard-deviation are calculated separately over the each group.
Both gamma and beta are learnable parameters.
Usage¶
mx.symbol.GroupNorm(...)
Arguments¶
Argument  | 
Description  | 
|---|---|
  | 
NDArray-or-Symbol. Input data  | 
  | 
NDArray-or-Symbol gamma array  | 
  | 
NDArray-or-Symbol beta array  | 
  | 
int, optional, default=’1’. Total number of groups.  | 
  | 
float, optional, default=9.99999975e-06. An epsilon parameter to prevent division by 0.  | 
  | 
boolean, optional, default=0. Output the mean and std calculated along the given axis.  | 
  | 
string, optional. Name of the resulting symbol.  | 
Value¶
out The result mx.symbol
Link to Source Code: http://github.com/apache/incubator-mxnet/blob/1.6.0/src/operator/nn/group_norm.cc#L77
