Package org.tribuo.math.util
Class Normalizer
java.lang.Object
org.tribuo.math.util.Normalizer
- All Implemented Interfaces:
Serializable
,VectorNormalizer
Normalizes, but first subtracts the minimum value (to ensure positivity).
- See Also:
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionexportNormalizer
(ONNXNode input) Applies ONNX ReduceMin, Sub, ReduceSum, and Div operations to input.double[]
normalize
(double[] input) Normalizes the input array in some fashion specified by the class.void
normalizeInPlace
(double[] input) In place normalization of the array.
-
Constructor Details
-
Normalizer
public Normalizer()
-
-
Method Details
-
normalize
public double[] normalize(double[] input) Description copied from interface:VectorNormalizer
Normalizes the input array in some fashion specified by the class.- Specified by:
normalize
in interfaceVectorNormalizer
- Parameters:
input
- The input to normalize.- Returns:
- The normalized array.
-
normalizeInPlace
public void normalizeInPlace(double[] input) Description copied from interface:VectorNormalizer
In place normalization of the array.Note: This default implementation performs a copy by calling the standard normalize method.
- Specified by:
normalizeInPlace
in interfaceVectorNormalizer
- Parameters:
input
- The input to normalize.
-
exportNormalizer
Applies ONNX ReduceMin, Sub, ReduceSum, and Div operations to input.- Specified by:
exportNormalizer
in interfaceVectorNormalizer
- Parameters:
input
- The node to be normalized according to this implementation.- Returns:
- the node representing Div, the final applie operation.
-