| Package | Description |
|---|---|
| org.aksw.palmetto.calculations.direct |
| Modifier and Type | Class and Description |
|---|---|
class |
CondProbConfirmationMeasure
This confirmation measure calculates the conditional probability of W' given
W*. result = P(W',W*)/P(W*)
|
class |
FitelsonConfirmationMeasure
This confirmation measure calculates the difference of the conditional
probability of W' given W* and the conditional probability of W' given ¬W*.
|
class |
JaccardConfirmationMeasure
This confirmation measure calculates the Jaccard similarity between W' and
W*. result = P(W',W*)/P(W' v W*)
|
class |
LikelihoodConfirmationMeasure
This confirmation measure calculates the Likelihood similarity between W' and
W*. result = P(W'|W*)/(P(W'|¬W*) + e)
The e is defined by
LogBasedCalculation.EPSILON. |
class |
LogCondProbConfirmationMeasure
This confirmation measure calculates the logarithm of the conditional
probability of W' given W*. result = log(P(W',W*)/P(W*))
|
class |
LogJaccardConfirmationMeasure
This confirmation measure calculates the logarithm of the Jaccard similarity
between W' and W*. result = log((P(W',W*) + e)/P(W' v W*))
The e is defined by
LogBasedCalculation.EPSILON. |
class |
LogLikelihoodConfirmationMeasure
This confirmation measure calculates the Likelihood similarity between W' and
W*. result = (P(W'|W*) + e)/(P(W'|¬W*) + e)
The e is defined by
LogBasedCalculation.EPSILON. |
class |
LogRatioConfirmationMeasure
This confirmation measure calculates the logarithm of the ratio between the
joint probability of W' and W* and the product of the two marginal
probabilities. result = log((P(W',W*) + e)/(P(W')*P(W*)))
Another name for it is pointwise mutual information (PMI).
|
class |
NormalizedLogRatioConfirmationMeasure
This confirmation measure calculates the logarithm of the ratio between the
joint probability of W' and W* and the product of the two marginal
probabilities.
|
class |
OlssonsConfirmationMeasure
This confirmation measure calculates Olssons coherence.
|
class |
RatioConfirmationMeasure
This confirmation measure calculates the ratio between the joint probability
of W' and W* and the product of the two marginal probabilities. result =
P(W',W*)/(P(W')*P(W*))
|
class |
ShogenjisConfirmationMeasure
This confirmation measure calculates Shogenjis coherence.
|
Copyright © 2014–2016. All rights reserved.