Class NoopNormalizer
java.lang.Object
org.tribuo.math.util.NoopNormalizer
- All Implemented Interfaces:
Serializable
,VectorNormalizer
NoopNormalizer returns a copy of the input, without normalizing it.
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiondouble[]
normalize
(double[] input) Normalizes the input array in some fashion specified by the class.
-
Constructor Details
-
NoopNormalizer
public NoopNormalizer()
-
-
Method Details
-
normalize
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.
-