org.apache.spark.streamdm

core

package core

Visibility
  1. Public
  2. All

Type Members

  1. trait ClassificationModel extends Model

    A ClassificationModel trait defines the needed operations on any classification Model.

  2. case class DenseInstance(inVector: Array[Double]) extends Instance with Serializable with Product

    A DenseInstance is an Instance in which the features are dense, i.

  3. class Example extends Serializable

    An Example is a wrapper on top of the Instance class hierarchy.

  4. trait Instance extends Serializable

    An Instance represents the input or output of any learning algorithm.

  5. trait Learner extends Configurable with Serializable

    A Learner trait defines the needed operations for any learner algorithm implemented.

  6. trait Model extends Serializable

    A Model trait defines the needed operations on any learning Model.

  7. case class NullInstance() extends Instance with Serializable with Product

    A NullInstance is an Instance which does not contain anything in it.

  8. case class SparseInstance(inIndexes: Array[Int], inValues: Array[Double]) extends Instance with Serializable with Product

    A SparseInstance is an Instance in which the features are sparse, i.

  9. case class TextInstance(inFeatures: Map[String, Double]) extends Instance with Serializable with Product

    A TextInstance is an Instance in which the features are a map of text keys, each associated with a value.

Value Members

  1. object DenseInstance extends Serializable

  2. object Example extends Serializable

  3. object ExampleParser extends Logging

  4. object SparseInstance extends Serializable

  5. object TextInstance extends Serializable

  6. package specification

Ungrouped