| Package | Description |
|---|---|
| org.aksw.palmetto.calculations.direct |
| Modifier and Type | Class and Description |
|---|---|
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
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
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.
|
Copyright © 2014–2016. All rights reserved.