**Short description**: Calculates mean-variance normalization of the input tensor.
**Detailed description**
*MVN* subtracts mean value from the input blob:
\f[
o_{i} = i_{i} - ReduceMean(i_{k}, axes)
\f]
If *normalize_variance* is set to `true`, the output blob is divided by variance. When normalizing the value, the number `eps` is added to the variance to avoid division by zero. According to the `eps_mode` flag's value, `eps` is added inside or outside the sqrt:
* **2**: `axes` - 1D tensor which specifies indices of dimensions in `data` that define normalization slices. Allowed range of axes is `[-r; r-1]` where `r = rank(data)`, the order can be not sorted. Negative value means counting dimensions from the back. Type *T_IND*. **Required.**