org.allenai.nlpstack.parse.poly.decisiontree

OneVersusAll

Related Doc: package decisiontree

case class OneVersusAll(binaryClassifiers: Seq[(Int, ProbabilisticClassifier)]) extends ProbabilisticClassifier with Product with Serializable

The OneVersusAll implements multi-outcome classification as a set of binary classifiers.

A ProbabilisticClassifier is associated with each outcome. Suppose there are three outcomes: 0, 1, 2. Then the constructor would take a sequence of three classifiers as its argument: [(0,A), (1,B), (2,C)]. To compute the outcome distribution for a new feature vector v, the OneVersusAll would normalize:

[ A.outcomeDistribution(v)(1), B.outcomeDistribution(v)(1), C.outcomeDistribution(v)(1) ]

i.e. the probability of 1 (true) according to binary classifiers A, B, and C.

QUESTION(MH): is this the best way to normalize these, or would it be better to normalize by summing the logs and then re-applying the exponential operation?

binaryClassifiers

the binary classifier associated with each outcome

Linear Supertypes
Serializable, Serializable, Product, Equals, ProbabilisticClassifier, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. OneVersusAll
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. ProbabilisticClassifier
  7. AnyRef
  8. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new OneVersusAll(binaryClassifiers: Seq[(Int, ProbabilisticClassifier)])

    binaryClassifiers

    the binary classifier associated with each outcome

Value Members

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

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

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

    Definition Classes
    AnyRef → Any
  4. def allFeatures: Set[Int]

    All features used by at least one of the binary subclassifiers.

    All features used by at least one of the binary subclassifiers.

    Definition Classes
    OneVersusAllProbabilisticClassifier
  5. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  6. val binaryClassifiers: Seq[(Int, ProbabilisticClassifier)]

    the binary classifier associated with each outcome

  7. def classify(featureVector: FeatureVector): (Int, Option[Justification])

    Classifies an feature vector and optionally returns a "justification" for the classification decision.

    Classifies an feature vector and optionally returns a "justification" for the classification decision.

    featureVector

    feature vector to classify

    returns

    (predicted outcome, optional justification for the prediction)

    Definition Classes
    ProbabilisticClassifier
  8. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  10. def finalize(): Unit

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

    Definition Classes
    AnyRef → Any
  12. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  13. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  14. final def notify(): Unit

    Definition Classes
    AnyRef
  15. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  16. def outcomeDistribution(featureVector: FeatureVector): (OutcomeDistribution, Option[Justification])

    Gets the probability distribution over outcomes.

    Gets the probability distribution over outcomes.

    featureVector

    feature vector to find outcome distribution for

    returns

    probability distribution of outcomes according to training data

    Definition Classes
    OneVersusAllProbabilisticClassifier
  17. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  18. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from ProbabilisticClassifier

Inherited from AnyRef

Inherited from Any

Ungrouped