com.truecar.mleap.core

classification

package classification

Visibility
  1. Public
  2. All

Type Members

  1. case class DecisionTreeClassification(rootNode: Node, numFeatures: Int, numClasses: Int) extends Product with Serializable

    Created by hollinwilkins on 3/30/16.

  2. case class LogisticRegression(coefficients: Vector, intercept: Double, threshold: Double = 0.5) extends Serializable with Product

    Binary Logistic Regression

  3. case class RandomForestClassification(trees: Seq[DecisionTreeClassification], numFeatures: Int, numClasses: Int) extends Product with Serializable

    Created by hollinwilkins on 3/30/16.

  4. case class SupportVectorMachine(coefficients: Vector, intercept: Double, threshold: Option[Double] = scala.None) extends Product with Serializable

    Created by hollinwilkins on 4/14/16.

Value Members

  1. object ProbabilisticClassification

    Created by hollinwilkins on 3/30/16.

Ungrouped