Class/Object

org.apache.flink.ml.outlier

StochasticOutlierSelection

Related Docs: object StochasticOutlierSelection | package outlier

Permalink

class StochasticOutlierSelection extends Transformer[StochasticOutlierSelection]

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. StochasticOutlierSelection
  2. Transformer
  3. Serializable
  4. Serializable
  5. Estimator
  6. WithParameters
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new StochasticOutlierSelection()

    Permalink

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. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def chainPredictor[P <: Predictor[P]](predictor: P): ChainedPredictor[StochasticOutlierSelection, P]

    Permalink

    Chains a Transformer with a Predictor to form a ChainedPredictor.

    Chains a Transformer with a Predictor to form a ChainedPredictor.

    P

    Type of the Predictor

    predictor

    Trailing Predictor of the resulting pipeline

    Definition Classes
    Transformer
  6. def chainTransformer[T <: Transformer[T]](transformer: T): ChainedTransformer[StochasticOutlierSelection, T]

    Permalink

    Chains two Transformer to form a ChainedTransformer.

    Chains two Transformer to form a ChainedTransformer.

    T

    Type of the Transformer

    transformer

    Right side transformer of the resulting pipeline

    Definition Classes
    Transformer
  7. def clone(): AnyRef

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

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

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  11. def fit[Training](training: DataSet[Training], fitParameters: ParameterMap = ParameterMap.Empty)(implicit fitOperation: FitOperation[StochasticOutlierSelection, Training]): Unit

    Permalink

    Fits the estimator to the given input data.

    Fits the estimator to the given input data. The fitting logic is contained in the FitOperation. The computed state will be stored in the implementing class.

    Training

    Type of the training data

    training

    Training data

    fitParameters

    Additional parameters for the FitOperation

    fitOperation

    FitOperation which encapsulates the algorithm logic

    Definition Classes
    Estimator
  12. final def getClass(): Class[_]

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

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

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

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

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

    Permalink
    Definition Classes
    AnyRef
  18. val parameters: ParameterMap

    Permalink
    Definition Classes
    WithParameters
  19. def setErrorTolerance(errorTolerance: Double): StochasticOutlierSelection

    Permalink

    The accepted error tolerance to reduce computational time when approximating the affinity.

    The accepted error tolerance to reduce computational time when approximating the affinity.

    errorTolerance

    the accepted error tolerance with respect to the affinity

  20. def setMaxIterations(maxIterations: Int): StochasticOutlierSelection

    Permalink

    The maximum number of iterations to approximate the affinity of the algorithm.

    The maximum number of iterations to approximate the affinity of the algorithm.

    maxIterations

    the maximum number of iterations.

  21. def setPerplexity(perplexity: Double): StochasticOutlierSelection

    Permalink

    Sets the perplexity of the outlier selection algorithm, can be seen as the k of kNN For more information, please read the Stochastic Outlier Selection algorithm technical paper.

    Sets the perplexity of the outlier selection algorithm, can be seen as the k of kNN For more information, please read the Stochastic Outlier Selection algorithm technical paper.

    perplexity

    the perplexity of the affinity fit

  22. final def synchronized[T0](arg0: ⇒ T0): T0

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

    Permalink
    Definition Classes
    AnyRef → Any
  24. def transform[Input, Output](input: DataSet[Input], transformParameters: ParameterMap = ParameterMap.Empty)(implicit transformOperation: TransformDataSetOperation[StochasticOutlierSelection, Input, Output]): DataSet[Output]

    Permalink

    Transform operation which transforms an input DataSet of type I into an output DataSet of type O.

    Transform operation which transforms an input DataSet of type I into an output DataSet of type O. The actual transform operation is implemented within the TransformDataSetOperation.

    Input

    Input data type

    Output

    Output data type

    input

    Input DataSet of type I

    transformParameters

    Additional parameters for the TransformDataSetOperation

    transformOperation

    TransformDataSetOperation which encapsulates the algorithm's logic

    Definition Classes
    Transformer
  25. final def wait(): Unit

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

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

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

Inherited from Serializable

Inherited from Serializable

Inherited from WithParameters

Inherited from AnyRef

Inherited from Any

Ungrouped