|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectedu.udo.cs.yale.operator.AbstractIOObject
edu.udo.cs.yale.operator.ResultObjectAdapter
edu.udo.cs.yale.operator.AbstractModel
edu.udo.cs.yale.operator.IOModel
edu.udo.cs.yale.operator.learner.PredictionModel
edu.udo.cs.yale.operator.learner.SimplePredictionModel
edu.udo.cs.yale.operator.learner.ConjunctiveRuleModel
public class ConjunctiveRuleModel
Each object of this class represents a conjunctive rule with boolean target and nominal attributes. It cannot be changed after construction. This simplifies applications that maintain counts separately. Each attribute may be tested at most once. For two rules it can be tested whether one subsumes the other. A method for refinement allows to create each rule just once. This model may be used to query for the prediction of a single example, as well as to predict complete ExampleSets.
Nested Class Summary | |
---|---|
private class |
ConjunctiveRuleModel.Literal
Helper class for maintaining attribute-value tests. |
Field Summary | |
---|---|
private java.util.Vector<ConjunctiveRuleModel.Literal> |
myLiterals
|
private int |
predictedLabel
|
Constructor Summary | |
---|---|
ConjunctiveRuleModel(Attribute label,
int predictedLabel)
Constructor to create an empty rule that makes a default prediction |
|
ConjunctiveRuleModel(Attribute label,
int predictedLabel,
int positives,
int negatives)
Constructor to create an empty rule that makes a default prediction |
|
ConjunctiveRuleModel(ConjunctiveRuleModel ruleToExtend,
Attribute attribute,
double testValue)
Constructor to create an empty rule that makes a default prediction |
|
ConjunctiveRuleModel(ConjunctiveRuleModel ruleToClone,
int predictedLabel)
Constructor to clone a rule, but to change the head (prediction) |
Method Summary | |
---|---|
boolean |
equals(java.lang.Object object)
Two rules are equal, if they are both permutations of the same set of literals and predict the same label. |
private double |
flipLabel(double nonPredictedLabel)
Works only for boolean labels and needs to be improved in case of changing Yale core classes. |
java.util.Collection<ConjunctiveRuleModel> |
getAllRefinedRules(ExampleSet exampleSet)
A refinement method that - when applied sytematically during learning - generates all rules for nominal attributes and a boolean target exactly once. |
Attribute |
getAttributeOfLiteral(int literalNumber)
|
int |
getConclusion()
|
protected int |
getFirstUnusedAttribute(ExampleSet exampleSet)
Helper method of getAllRefinedRules . |
int |
getPositionOfAttributeInRule(Attribute attribute)
|
int |
getRuleLength()
|
double |
getTestedValueAtLiteral(int literalNumber)
|
boolean |
isRefinementOf(ConjunctiveRuleModel model)
|
double |
predict(Example example)
Applies the model to a single example and returns the predicted class value. |
void |
readPredictionModelData(java.io.ObjectInputStream in)
not supported yet |
java.lang.String |
toString()
|
void |
writePredictionModelData(java.io.ObjectOutputStream out)
not supported yet |
Methods inherited from class edu.udo.cs.yale.operator.learner.SimplePredictionModel |
---|
performPrediction |
Methods inherited from class edu.udo.cs.yale.operator.learner.PredictionModel |
---|
apply, createPredictedLabel, getLabel, readData, removePredictedLabel, setLabel, writeData |
Methods inherited from class edu.udo.cs.yale.operator.AbstractModel |
---|
getExtension, getFileDescription, readModel, readModel, save, setParameter, writeModel, writeModel |
Methods inherited from class edu.udo.cs.yale.operator.ResultObjectAdapter |
---|
addAction, getActions, getName, getVisualisationComponent, toHTML, toResultString |
Methods inherited from class edu.udo.cs.yale.operator.AbstractIOObject |
---|
copy, read, read, read, write, write |
Methods inherited from class java.lang.Object |
---|
clone, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Methods inherited from interface edu.udo.cs.yale.operator.ResultObject |
---|
getActions, getName, getVisualisationComponent, toResultString |
Methods inherited from interface edu.udo.cs.yale.operator.IOObject |
---|
copy, write, write |
Field Detail |
---|
private final int predictedLabel
private final java.util.Vector<ConjunctiveRuleModel.Literal> myLiterals
Constructor Detail |
---|
public ConjunctiveRuleModel(Attribute label, int predictedLabel)
label
- the label attribute of the exampleSetpredictedLabel
- specifies the head of the rule, i.e. which label to predictpublic ConjunctiveRuleModel(Attribute label, int predictedLabel, int positives, int negatives)
label
- the label attribute of the exampleSetpredictedLabel
- specifies the head of the rule, i.e. which label to predictpublic ConjunctiveRuleModel(ConjunctiveRuleModel ruleToClone, int predictedLabel)
public ConjunctiveRuleModel(ConjunctiveRuleModel ruleToExtend, Attribute attribute, double testValue) throws OperatorException
OperatorException
Method Detail |
---|
public void readPredictionModelData(java.io.ObjectInputStream in) throws java.io.IOException
readPredictionModelData
in class PredictionModel
java.io.IOException
public void writePredictionModelData(java.io.ObjectOutputStream out) throws java.io.IOException
writePredictionModelData
in class PredictionModel
java.io.IOException
public java.lang.String toString()
toString
in class PredictionModel
String
representation of this rule model.private double flipLabel(double nonPredictedLabel)
public double predict(Example example) throws OperatorException
SimplePredictionModel
predict
in class SimplePredictionModel
OperatorException
public int getRuleLength()
public int getConclusion()
public Attribute getAttributeOfLiteral(int literalNumber)
literalNumber
- the number of the literal in the rule
public double getTestedValueAtLiteral(int literalNumber)
literalNumber
- the number of the literal in the rule
public int getPositionOfAttributeInRule(Attribute attribute)
attribute
- to look for in the conjunctive rule
public boolean isRefinementOf(ConjunctiveRuleModel model)
model
- another ConjuctiveRuleModel
public boolean equals(java.lang.Object object)
equals
in class AbstractModel
protected int getFirstUnusedAttribute(ExampleSet exampleSet)
getAllRefinedRules
. Iterates through the
Attributes of an ExampleSet and compares them to those part of the rule.
exampleSet
-
public java.util.Collection<ConjunctiveRuleModel> getAllRefinedRules(ExampleSet exampleSet) throws OperatorException
exampleSet
- used to identify attributes and their values for refinement
OperatorException
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |