Class StandardScalerExample
- java.lang.Object
-
- org.apache.ignite.examples.ml.preprocessing.StandardScalerExample
-
public class StandardScalerExample extends java.lang.ObjectExample that shows how to use StandardScaler preprocessor to scale the given data.Machine learning preprocessors are built as a chain. Most often the first preprocessor is a feature extractor as shown in this example. The second preprocessor here is a
StandardScalerpreprocessor which is built on top of the feature extractor and represents a chain of itself and the underlying feature extractor.
-
-
Constructor Summary
Constructors Constructor Description StandardScalerExample()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static voidmain(java.lang.String[] args)Run example.
-