Class MaxAbsScalerExample


  • public class MaxAbsScalerExample
    extends java.lang.Object
    Example that shows how to use MaxAbsScaler preprocessor to scale the given data.

    Machine learning preprocessors are built as a chain. Most often a first preprocessor is a feature extractor as shown in this example. The second preprocessor here is a MinMaxScaler preprocessor which is built on top of the feature extractor and represents a chain of itself and the underlying feature extractor.

    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static void main​(java.lang.String[] args)
      Run example.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • MaxAbsScalerExample

        public MaxAbsScalerExample()
    • Method Detail

      • main

        public static void main​(java.lang.String[] args)
                         throws java.lang.Exception
        Run example.
        Throws:
        java.lang.Exception