Normalizer
A normalization preprocessor.
message Normalizer {
enum NormType {
LMax = 0;
L1 = 1;
L2 = 2;
}
NormType normType = 1;
}
Normalizer.NormType
There are three normalization modes, which have the corresponding formulas:
- Max
- L1
- L2
enum NormType {
LMax = 0;
L1 = 1;
L2 = 2;
}