Class/Object

classifiers

PerceptronClassifier

Related Docs: object PerceptronClassifier | package classifiers

Permalink

class PerceptronClassifier extends Classifier

Perceptron classifier

Linear Supertypes
Classifier, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. PerceptronClassifier
  2. Classifier
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new PerceptronClassifier(json: JsValue)

    Permalink
  2. new PerceptronClassifier(alpha: Double = PerceptronClassifier.alpha, degree: Int = PerceptronClassifier.degree)

    Permalink

    alpha

    Learning rate

    degree

    Order of polynomial features to add to the instances (1 for no addition)

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. def _predict(X: List[List[Double]]): List[Int]

    Permalink
  5. def _train(X: List[List[Double]], y: List[Int]): Unit

    Permalink
  6. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  7. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. def diagnostics(): Map[String, List[(Double, Double)]]

    Permalink

    Provides meta-information on the classifier

    Provides meta-information on the classifier

    returns

    Map object of metric names and metric values

    Definition Classes
    Classifier
  9. def distToPlane(instance: List[Double], weight: List[Double]): Double

    Permalink

    Calculates the distance to the decision decision hyperplane

  10. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  11. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  12. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  13. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  14. def getPrediction(instance: List[Double], weight: List[Double]): Int

    Permalink

    Gets the prediction for this instance

    Gets the prediction for this instance

    Predicts if instance is above or below the decision hyperplane

  15. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  16. def isCorrect(instance: List[Double], label: Int, weight: List[Double]): Boolean

    Permalink

    Determines if an instance is classified correctly

  17. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  18. val name: String

    Permalink

    The name of the classifier

    The name of the classifier

    Definition Classes
    PerceptronClassifierClassifier
  19. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  20. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  21. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  22. def predict(X: List[List[Double]]): List[Int]

    Permalink

    Applies the trained classifier to a dataset

    Applies the trained classifier to a dataset

    X

    List of data instances

    returns

    List of predictions

    Definition Classes
    PerceptronClassifierClassifier
  23. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  24. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  25. def train(X: List[List[Double]], y: List[Int], sampleWeight: List[Double] = Nil): Unit

    Permalink

    Performs the training of the classifier

    Performs the training of the classifier

    X

    List of training instances

    y

    List of training labels

    Definition Classes
    PerceptronClassifierClassifier
  26. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  27. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  28. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  29. var weight: List[Double]

    Permalink

    The weights with the intercept as the head element

Inherited from Classifier

Inherited from AnyRef

Inherited from Any

Ungrouped