org.apache.spark

ml

package ml

Spark ML is a BETA component that adds a new set of machine learning APIs to let users quickly assemble and configure practical machine learning pipelines.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. ml
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. abstract class Estimator[M <: Model[M]] extends PipelineStage

    :: DeveloperApi :: Abstract class for estimators that fit models to data.

  2. abstract class Model[M <: Model[M]] extends Transformer

    :: DeveloperApi :: A fitted model, i.

  3. class Pipeline extends Estimator[PipelineModel]

    :: Experimental :: A simple pipeline, which acts as an estimator.

  4. class PipelineModel extends Model[PipelineModel] with Logging

    :: Experimental :: Represents a fitted pipeline.

  5. abstract class PipelineStage extends Params with Logging

    :: DeveloperApi :: A stage in a pipeline, either an Estimator or a Transformer.

  6. abstract class PredictionModel[FeaturesType, M <: PredictionModel[FeaturesType, M]] extends Model[M] with PredictorParams

    :: DeveloperApi :: Abstraction for a model for prediction tasks (regression and classification).

  7. abstract class Predictor[FeaturesType, Learner <: Predictor[FeaturesType, Learner, M], M <: PredictionModel[FeaturesType, M]] extends Estimator[M] with PredictorParams

    :: DeveloperApi :: Abstraction for prediction problems (regression and classification).

  8. abstract class Transformer extends PipelineStage

    :: DeveloperApi :: Abstract class for transformers that transform one dataset into another.

  9. abstract class UnaryTransformer[IN, OUT, T <: UnaryTransformer[IN, OUT, T]] extends Transformer with HasInputCol with HasOutputCol with Logging

    :: DeveloperApi :: Abstract class for transformers that take one input column, apply transformation, and output the result as a new column.

Value Members

  1. package attribute

    The ML pipeline API uses DataFrames as ML datasets.

  2. package classification

  3. package evaluation

  4. package feature

  5. package param

  6. package recommendation

  7. package regression

  8. package tree

  9. package tuning

Inherited from AnyRef

Inherited from Any

Members