Package

ml.combust.mleap.core

clustering

Permalink

package clustering

Visibility
  1. Public
  2. All

Type Members

  1. case class BisectingKMeansModel(root: ClusteringTreeNode) extends Model with Product with Serializable

    Permalink

    Created by hollinwilkins on 12/26/16.

    Created by hollinwilkins on 12/26/16.

    Annotations
    @SparkCode()
  2. case class ClusteringTreeNode(index: Int, centerWithNorm: VectorWithNorm, children: Array[ClusteringTreeNode]) extends Serializable with Product

    Permalink
    Annotations
    @SparkCode()
  3. case class GaussianMixtureModel(gaussians: Array[MultivariateGaussian], weights: Array[Double]) extends Model with Product with Serializable

    Permalink
  4. case class KMeansModel(clusterCenters: Array[VectorWithNorm], numFeatures: Int) extends Model with Product with Serializable

    Permalink
  5. abstract class LDAModel extends AnyRef

    Permalink

    Created by mageswarand on 15/2/17.

    Created by mageswarand on 15/2/17.

    Note: All Spark Linear Algebra APIs are converted to bare Breeze APIs

    Annotations
    @SparkCode()
  6. case class LocalLDAModel(topics: Matrix[Double], docConcentration: DenseVector[Double], topicConcentration: Double, gammaShape: Double = 100) extends LDAModel with Model with Product with Serializable

    Permalink

    Local LDA model.

    Local LDA model. This model stores only the inferred topics.

    topics

    Inferred topics (vocabSize x k matrix).

Value Members

  1. object GaussianMixtureModel extends Serializable

    Permalink

    Created by hollinwilkins on 11/17/16.

  2. object KMeansModel extends Serializable

    Permalink

    Created by hollinwilkins on 9/30/16.

  3. object LDAUtils

    Permalink

    Created by mageswarand on 20/2/17.

    Created by mageswarand on 20/2/17. Utility methods for LDA.

    Annotations
    @SparkCode()
  4. object LocalLDAModel extends Serializable

    Permalink

Ungrouped