org.apache.spark.mllib

classification

package classification

Visibility
  1. Public
  2. All

Type Members

  1. trait ClassificationModel extends Serializable

  2. class LogisticRegressionModel extends GeneralizedLinearModel with ClassificationModel with Serializable

    Classification model trained using Logistic Regression.

  3. class LogisticRegressionWithSGD extends GeneralizedLinearAlgorithm[LogisticRegressionModel] with Serializable

    Train a classification model for Logistic Regression using Stochastic Gradient Descent.

  4. class SVMModel extends GeneralizedLinearModel with ClassificationModel with Serializable

    Model for Support Vector Machines (SVMs).

  5. class SVMWithSGD extends GeneralizedLinearAlgorithm[SVMModel] with Serializable

    Train a Support Vector Machine (SVM) using Stochastic Gradient Descent.

Value Members

  1. object LogisticRegressionWithSGD extends Serializable

    Top-level methods for calling Logistic Regression.

  2. object SVMWithSGD extends Serializable

    Top-level methods for calling SVM.