|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectedu.udo.cs.yale.operator.Operator
edu.udo.cs.yale.operator.learner.AbstractLearner
edu.udo.cs.yale.operator.learner.BestRuleInduction
public class BestRuleInduction
This operator returns the best rule regarding WRAcc using exhaustive search. Features like the incorporation of other metrics and the search for more than a single rule are prepared. The search strategy is BFS, with save pruning whenever applicable. This operator can easily be extended to support other search strategies.
Nested Class Summary | |
---|---|
class |
BestRuleInduction.RuleWithScoreUpperBound
|
Field Summary | |
---|---|
protected ConjunctiveRuleModel |
bestRule
|
private double |
bestScore
|
private static java.lang.String |
BINOMIAL
|
private static java.lang.String |
DEPTH_BOUND
|
private double |
globalN
|
private double |
globalP
|
private static java.lang.String |
MAX_CACHE
|
private java.util.Vector<BestRuleInduction.RuleWithScoreUpperBound> |
openNodes
|
private java.util.Vector<ConjunctiveRuleModel> |
prunedNodes
|
private static java.lang.String |
REL_TO_PRED
|
private static java.lang.String |
UTILITY_FUNCTION
|
private static java.lang.String[] |
UTILITY_FUNCTION_LIST
|
private static java.lang.String |
WRACC
|
Constructor Summary | |
---|---|
BestRuleInduction(OperatorDescription description)
|
Method Summary | |
---|---|
private void |
addRulesToOpenNodes(java.util.Collection rules,
double scoreUpperBound)
Annotates the collection of ConjunctiveRuleModels with an optimistic score they may achieve in the best case and adds them to the collection of open nodes. |
protected boolean |
communicateToHighscore(ConjunctiveRuleModel rule,
double[] counts)
Adds a rule to the set of best rules if its score is high enough. |
private void |
expandNode(ConjunctiveRuleModel rule,
ExampleSet exampleSet)
Evaluates a single rule by computing its score, and the best possible score after refining this rule. |
protected ConjunctiveRuleModel |
getBestRule()
|
protected double[] |
getCounts(ConjunctiveRuleModel rule,
ExampleSet exampleSet)
|
protected double |
getOptimisticScore(double[] counts)
Computes the best possible score that might be achieved by refining the rule. |
java.util.List<ParameterType> |
getParameterTypes()
Adds the parameters "number of iterations" and "model file". |
protected double |
getPruningScore()
|
protected double |
getScore(double[] counts,
boolean predictPositives)
Computes the WRAcc or BINOMIAL TEST FUNCTION based on p, n, and the global values P and N stored in this object. |
protected void |
initHighscore()
|
boolean |
isRefinementOfPrunedRule(ConjunctiveRuleModel rule)
|
Model |
learn(ExampleSet exampleSet)
Trains a model. |
boolean |
supportsCapability(LearnerCapability lc)
Checks for Learner capabilities. |
Methods inherited from class edu.udo.cs.yale.operator.learner.AbstractLearner |
---|
apply, checkLearnerCapabilities, getEstimatedPerformance, getInputClasses, getInputDescription, getOptimizationPerformance, getOutputClasses, getWeights, shouldCalculateWeights, shouldDeliverOptimizationPerformance, shouldEstimatePerformance |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Methods inherited from interface edu.udo.cs.yale.operator.learner.Learner |
---|
getName |
Field Detail |
---|
private static final java.lang.String DEPTH_BOUND
private static final java.lang.String UTILITY_FUNCTION
private static final java.lang.String MAX_CACHE
private static final java.lang.String REL_TO_PRED
private static final java.lang.String WRACC
private static final java.lang.String BINOMIAL
private static final java.lang.String[] UTILITY_FUNCTION_LIST
private double globalP
private double globalN
protected ConjunctiveRuleModel bestRule
private double bestScore
private final java.util.Vector<BestRuleInduction.RuleWithScoreUpperBound> openNodes
private final java.util.Vector<ConjunctiveRuleModel> prunedNodes
Constructor Detail |
---|
public BestRuleInduction(OperatorDescription description)
Method Detail |
---|
public boolean supportsCapability(LearnerCapability lc)
Learner
protected void initHighscore()
protected boolean communicateToHighscore(ConjunctiveRuleModel rule, double[] counts) throws UndefinedParameterError
UndefinedParameterError
protected ConjunctiveRuleModel getBestRule()
protected double getPruningScore()
public Model learn(ExampleSet exampleSet) throws OperatorException
Learner
OperatorException
private void addRulesToOpenNodes(java.util.Collection rules, double scoreUpperBound)
private void expandNode(ConjunctiveRuleModel rule, ExampleSet exampleSet) throws OperatorException
OperatorException
public boolean isRefinementOfPrunedRule(ConjunctiveRuleModel rule)
rule
- a ConjuctiveRuleModel for which it is checked whether a more
general rule has already been pruned.
ConjunctiveRuleModel.isRefinementOf(ConjunctiveRuleModel model)
protected double getScore(double[] counts, boolean predictPositives) throws UndefinedParameterError
UndefinedParameterError
protected double getOptimisticScore(double[] counts) throws UndefinedParameterError
UndefinedParameterError
protected double[] getCounts(ConjunctiveRuleModel rule, ExampleSet exampleSet) throws OperatorException
rule
- the rule to evaluateexampleSet
- the exampleSet to get the counts for
OperatorException
public java.util.List<ParameterType> getParameterTypes()
getParameterTypes
in class Operator
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |