Package

org.incal.spark_ml.models

classification

Permalink

package classification

Visibility
  1. Public
  2. All

Type Members

  1. trait Classifier extends AnyRef

    Permalink
  2. case class DecisionTree(_id: Option[BSONObjectID] = None, core: TreeCore = TreeCore(), impurity: Option[DecisionTreeImpurity.Value] = None, name: Option[String] = None, createdById: Option[BSONObjectID] = None, timeCreated: Date = new Date()) extends Classifier with Product with Serializable

    Permalink
  3. case class GradientBoostTree(_id: Option[BSONObjectID] = None, core: TreeCore = TreeCore(), maxIteration: ValueOrSeq[Int] = Left(None), stepSize: ValueOrSeq[Double] = Left(None), subsamplingRate: ValueOrSeq[Double] = Left(None), lossType: Option[GBTClassificationLossType.Value] = None, name: Option[String] = None, createdById: Option[BSONObjectID] = None, timeCreated: Date = new Date()) extends Classifier with Product with Serializable

    Permalink
  4. case class LinearSupportVectorMachine(_id: Option[BSONObjectID] = None, aggregationDepth: ValueOrSeq[Int] = Left(None), fitIntercept: Option[Boolean] = None, maxIteration: ValueOrSeq[Int] = Left(None), regularization: ValueOrSeq[Double] = Left(None), standardization: Option[Boolean] = None, threshold: ValueOrSeq[Double] = Left(None), tolerance: ValueOrSeq[Double] = Left(None), name: Option[String] = None, createdById: Option[BSONObjectID] = None, timeCreated: Date = new Date()) extends Classifier with Product with Serializable

    Permalink
  5. case class LogisticRegression(_id: Option[BSONObjectID] = None, regularization: ValueOrSeq[Double] = Left(None), elasticMixingRatio: ValueOrSeq[Double] = Left(None), maxIteration: ValueOrSeq[Int] = Left(None), tolerance: ValueOrSeq[Double] = Left(None), fitIntercept: Option[Boolean] = None, family: Option[LogisticModelFamily.Value] = None, standardization: Option[Boolean] = None, aggregationDepth: ValueOrSeq[Int] = Left(None), threshold: ValueOrSeq[Double] = Left(None), thresholds: Option[Seq[Double]] = None, name: Option[String] = None, createdById: Option[BSONObjectID] = None, timeCreated: Date = new Date()) extends Classifier with Product with Serializable

    Permalink
  6. case class MultiLayerPerceptron(_id: Option[BSONObjectID] = None, hiddenLayers: Seq[Int], maxIteration: ValueOrSeq[Int] = Left(None), tolerance: ValueOrSeq[Double] = Left(None), blockSize: ValueOrSeq[Int] = Left(None), solver: Option[MLPSolver.Value] = None, seed: Option[Long] = None, stepSize: ValueOrSeq[Double] = Left(None), name: Option[String] = None, createdById: Option[BSONObjectID] = None, timeCreated: Date = new Date()) extends Classifier with Product with Serializable

    Permalink
  7. case class NaiveBayes(_id: Option[BSONObjectID] = None, smoothing: ValueOrSeq[Double] = Left(None), modelType: Option[BayesModelType.Value] = None, name: Option[String] = None, createdById: Option[BSONObjectID] = None, timeCreated: Date = new Date()) extends Classifier with Product with Serializable

    Permalink
  8. case class RandomForest(_id: Option[BSONObjectID] = None, core: TreeCore = TreeCore(), numTrees: ValueOrSeq[Int] = Left(None), subsamplingRate: ValueOrSeq[Double] = Left(None), impurity: Option[DecisionTreeImpurity.Value] = None, featureSubsetStrategy: Option[RandomForestFeatureSubsetStrategy.Value] = None, name: Option[String] = None, createdById: Option[BSONObjectID] = None, timeCreated: Date = new Date()) extends Classifier with Product with Serializable

    Permalink

Value Members

  1. object BayesModelType extends Enumeration

    Permalink
  2. object ClassificationEvalMetric extends Enumeration

    Permalink
  3. object DecisionTreeImpurity extends Enumeration

    Permalink
  4. object GBTClassificationLossType extends Enumeration

    Permalink
  5. object LogisticModelFamily extends Enumeration

    Permalink
  6. object MLPSolver extends Enumeration

    Permalink
  7. object RandomForestFeatureSubsetStrategy extends Enumeration

    Permalink

Ungrouped