Package

org.apache.spark.ml.mleap

classification

Permalink

package classification

Visibility
  1. Public
  2. All

Type Members

  1. final class OneVsRest extends Estimator[OneVsRestModel] with OneVsRestParams with MLWritable

    Permalink

    Reduction of Multiclass Classification to Binary Classification.

    Reduction of Multiclass Classification to Binary Classification. Performs reduction using one against all strategy. For a multiclass classification with k classes, train k models (one per class). Each example is scored against all k models and the model with highest score is picked to label the example.

    Annotations
    @SparkCode() @Since( "1.4.0" )
  2. final class OneVsRestModel extends Model[OneVsRestModel] with OneVsRestParams with MLWritable

    Permalink

    Model produced by OneVsRest.

    Model produced by OneVsRest. This stores the models resulting from training k binary classifiers: one for each class. Each example is scored against all k models, and the model with the highest score is picked to label the example.

    Annotations
    @SparkCode() @Since( "1.4.0" )
  3. class SVM extends ProbabilisticClassifier[Vector, SVM, SVMModel] with SVMBase

    Permalink
  4. trait SVMBase extends Params

    Permalink

    Created by hollinwilkins on 4/14/16.

  5. class SVMModel extends ProbabilisticClassificationModel[Vector, SVMModel] with SVMBase

    Permalink
  6. class SVMWithSGD extends GeneralizedLinearAlgorithm[mllib.classification.SVMModel] with Serializable

    Permalink
    Annotations
    @SparkCode()

Value Members

  1. object OneVsRest extends MLReadable[OneVsRest] with Serializable

    Permalink
    Annotations
    @SparkCode() @Since( "2.0.0" )
  2. object OneVsRestModel extends MLReadable[OneVsRestModel] with Serializable

    Permalink
    Annotations
    @SparkCode() @Since( "2.0.0" )

Ungrouped