Object/Class

org.apache.flink.ml.preprocessing

StandardScaler

Related Docs: class StandardScaler | package preprocessing

Permalink

object StandardScaler extends Serializable

Linear Supertypes
Serializable, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. StandardScaler
  2. Serializable
  3. Serializable
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. abstract class StandardScalerTransformOperation[T] extends TransformOperation[StandardScaler, (Vector[Double], Vector[Double]), T, T]

    Permalink

    Base class for StandardScaler's TransformOperation.

    Base class for StandardScaler's TransformOperation. This class has to be extended for all types which are supported by StandardScaler's transform operation.

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. object Mean extends Parameter[Double] with Product with Serializable

    Permalink
  5. object Std extends Parameter[Double] with Product with Serializable

    Permalink
  6. def apply(): StandardScaler

    Permalink
  7. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  8. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  10. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  11. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  12. implicit def fitLabelVectorTupleStandardScaler[T <: Vector](implicit arg0: BreezeVectorConverter[T], arg1: TypeInformation[T], arg2: ClassTag[T]): FitOperation[StandardScaler, (T, Double)]

    Permalink

    Trains the StandardScaler by learning the mean and standard deviation of the training data which is of type (Vector, Double).

    Trains the StandardScaler by learning the mean and standard deviation of the training data which is of type (Vector, Double). The mean and standard deviation are used to transform the given input data.

  13. implicit val fitLabeledVectorStandardScaler: FitOperation[StandardScaler, LabeledVector]

    Permalink

    Trains the StandardScaler by learning the mean and standard deviation of the training data which is of type LabeledVector.

    Trains the StandardScaler by learning the mean and standard deviation of the training data which is of type LabeledVector. The mean and standard deviation are used to transform the given input data.

  14. implicit def fitVectorStandardScaler[T <: Vector]: FitOperation[StandardScaler, T]

    Permalink

    Trains the org.apache.flink.ml.preprocessing.StandardScaler by learning the mean and standard deviation of the training data.

    Trains the org.apache.flink.ml.preprocessing.StandardScaler by learning the mean and standard deviation of the training data. These values are used inthe transform step to transform the given input data.

    T

    Input data type which is a subtype of Vector

  15. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  16. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  17. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  18. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  19. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  20. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  21. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  22. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  23. implicit val transformLabeledVector: StandardScalerTransformOperation[LabeledVector]

    Permalink

    TransformOperation to transform LabeledVector.

  24. implicit def transformTupleVectorDouble[T <: Vector](implicit arg0: BreezeVectorConverter[T], arg1: TypeInformation[T], arg2: ClassTag[T]): StandardScalerTransformOperation[(T, Double)]

    Permalink

    TransformOperation to transform tuples of type (Vector, Double).

  25. implicit def transformVectors[T <: Vector](implicit arg0: BreezeVectorConverter[T], arg1: TypeInformation[T], arg2: ClassTag[T]): StandardScalerTransformOperation[T]

    Permalink

    TransformOperation to transform Vector types

  26. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  27. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  28. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped