|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectedu.udo.cs.yale.operator.learner.meta.WeightedPerformanceMeasures
public class WeightedPerformanceMeasures
This private class cares about weighted performance measures as used
by the BayesianBoosting
algorithm and the similarly working
ModelBasedSampling
operator.
Field Summary | |
---|---|
private double[] |
labels
|
private double[][] |
pred_label
|
private double[] |
predictions
|
static double |
RULE_DOES_NOT_APPLY
This constant is used to express that no examples have been observed. |
private int[][] |
unweighted_num_pred_label
|
Constructor Summary | |
---|---|
WeightedPerformanceMeasures(ExampleSet exampleSet)
Constructor. |
Method Summary | |
---|---|
double[][] |
createLiftRatioMatrix()
|
ContingencyMatrix |
getContingencyMatrix()
converts the deprecated representation into the new form |
int[] |
getCoveredExamplesNumForPred(int prediction)
Method to query for the unweighted absolute number of covered examples of each class, given a specific prediction |
double[] |
getLabelPriors()
|
double |
getLift(int label,
int prediction)
The lift of the rule specified by the nominal variable's indices. |
int |
getNumberOfLabels()
|
int |
getNumberOfNonEmptyClasses()
|
int |
getNumberOfPredictions()
|
double[] |
getPnRatios(int prediction)
The factor to be applied (pn-ratio) for each label if the model yields the specific prediction. |
double |
getProbability(int label,
int prediction)
Method to query for the probability of one of the prediction/label subsets |
double |
getProbabilityLabel(int label)
Method to query for the "prior" probability of one of the labels. |
double |
getProbabilityPrediction(int premise)
Method to query for the "prior" probability of one of the predictions. |
static double |
reweightExamples(ExampleSet exampleSet,
ContingencyMatrix cm,
boolean allowMarginalSkews)
Helper method of the BayesianBoosting operator
This method reweights the example set with respect to the
WeightedPerformanceMeasures object. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static final double RULE_DOES_NOT_APPLY
private double[] predictions
private double[] labels
private double[][] pred_label
private int[][] unweighted_num_pred_label
Constructor Detail |
---|
public WeightedPerformanceMeasures(ExampleSet exampleSet) throws OperatorException
exampleSet
- the ExampleSet
this object shall hold the
performance measures for
OperatorException
Method Detail |
---|
public int[] getCoveredExamplesNumForPred(int prediction)
prediction
- the value predicted by the model (internal index number)
int[]
array with the number of examples of
class i
(internal index number) stored at index
i
.public int getNumberOfLabels()
public int getNumberOfPredictions()
public double getProbability(int label, int prediction)
label
- the (correct) class label of the example as it comes from the
internal indexprediction
- the boolean value predicted by the model (premise) (internal
index number)
public double getProbabilityLabel(int label)
label
- the nominal class label
public double getProbabilityPrediction(int premise)
premise
- the prediction of a model
public double getLift(int label, int prediction)
RULE_DOES_NOT_APPLY
is returned to indicate that no such
example has ever been observed, Double.POSITIVE_INFINITY
is returned if the class membership can deterministically be concluded
from the prediction.
Important: In the multi-class case some of the classes might not be
observed at all when a specific rule applies, but still the rule does not
necessarily have a deterministic part. In this case the remaining number
of classes is considered to be the complete set of classes when
calculating the default values and lifts! This does not affect the
prediction of the most likely class label, because the classes not
observed have a probability of one, the other estimates increase
proportionally. However, to calculate probabilities it is necessary to
normalize the estimates in the class BayBoostModel
.
label
- the true labelprediction
- the predicted label
RULE_DOES_NOT_APPLY
if no prediction can
be made.public double[] getPnRatios(int prediction)
prediction
- the predicted class
double[]
array containing one factor for each
class. The result should either consist of well defined
lifts >= 0, or all fields should mutually contain the constant
RULE_DOES_NOT_APPLY
.public double[][] createLiftRatioMatrix()
public double[] getLabelPriors()
double[]
with the prior probabilities of all
class labels.public int getNumberOfNonEmptyClasses()
public ContingencyMatrix getContingencyMatrix()
public static double reweightExamples(ExampleSet exampleSet, ContingencyMatrix cm, boolean allowMarginalSkews) throws OperatorException
BayesianBoosting
operator
This method reweights the example set with respect to the
WeightedPerformanceMeasures
object. Please note that the
weights will not be reset at any time, because they continuously change
from one iteration to the next. This method does not change the priors of
the classes.
exampleSet
- ExampleSet
to be reweightedcm
- the ContingencyMatrix
as e.g. returned by
WeightedPerformanceMeasures
allowMarginalSkews
- indicates whether the weight of covered and uncovered subsets
are allowed to change.
OperatorException
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |