edu.udo.cs.yale.operator.learner.igss.hypothesis
Class Rule

java.lang.Object
  extended by edu.udo.cs.yale.operator.learner.igss.hypothesis.Hypothesis
      extended by edu.udo.cs.yale.operator.learner.igss.hypothesis.Rule

public class Rule
extends Hypothesis

Objects of this class represent a conjunctive rule. All abstract methods of the superclass Hypothesis are implemented.

Version:
$Id: Rule.java,v 1.1 2006/10/02 16:07:49 ingomierswa Exp $
Author:
Dirk Dach

Field Summary
private static Literal[][] allLiterals
          All literals possible with the given attributeset.
private  Literal[] literals
          The premise of the rule.
private  int prediction
          The index of the label class this rule predicts aka Y+ or Y-.
 
Fields inherited from class edu.udo.cs.yale.operator.learner.igss.hypothesis.Hypothesis
coveredWeight, createAllHypothesis, FIRST_TYPE_INDEX, HYPOTHESIS_SPACE_TYPES, LAST_TYPE_INDEX, NEGATIVE_CLASS, POSITIVE_CLASS, positiveWeight, rejectionSampling, TYPE_RULE
 
Constructor Summary
Rule(Attribute[] regularAttributes, Attribute label, boolean rejectionSampling, boolean createAll)
          Creates a new rule,initializes the regularAttributes and the literals attribute.
Rule(Literal[] literals, int prediction)
          Construct a new rule with the given literals.
Rule(Literal literal, int prediction)
          Construct a new rule with one literal.
 
Method Summary
 boolean applicable(Example e)
          Test if the rule is applicable to the given examples without updating the corresponding value.
 void apply(Example e)
          Applies the rule to the given examples.
 boolean canBeRefined()
          Returns true only if this hypothesis can still be refined.
 Hypothesis clone()
          Clones the rule with covered and positive weight.
 boolean equals(java.lang.Object o)
          Returns true if the two rules have the same premise and make the same perdiction.
 int getComplexity()
          Returns the lenght of the premise of the rule.
 Literal[] getLiterals()
          Returns the literals in the premise of this rule.
 int getPrediction()
          Returns the index of prediction of this rule
 java.util.LinkedList<Hypothesis> init(int minComplexity)
          Creates all rules with length<=minComplexity. <="<" />D>
 java.util.LinkedList<Hypothesis> refine()
          Creates all successors of the rule that have one more literal.
 java.lang.String toString()
          Returns a String representation of the rule.
 
Methods inherited from class edu.udo.cs.yale.operator.learner.igss.hypothesis.Hypothesis
getCoveredWeight, getLabel, getPositiveWeight, reset, setCoveredWeight, setPositiveWeight
 
Methods inherited from class java.lang.Object
finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

allLiterals

private static Literal[][] allLiterals
All literals possible with the given attributeset.


literals

private Literal[] literals
The premise of the rule.


prediction

private int prediction
The index of the label class this rule predicts aka Y+ or Y-.

Constructor Detail

Rule

public Rule(Attribute[] regularAttributes,
            Attribute label,
            boolean rejectionSampling,
            boolean createAll)
Creates a new rule,initializes the regularAttributes and the literals attribute.


Rule

public Rule(Literal literal,
            int prediction)
Construct a new rule with one literal.


Rule

public Rule(Literal[] literals,
            int prediction)
Construct a new rule with the given literals.

Method Detail

clone

public Hypothesis clone()
Clones the rule with covered and positive weight.

Specified by:
clone in class Hypothesis


apply

public void apply(Example e)
Applies the rule to the given examples.

Specified by:
apply in class Hypothesis


applicable

public boolean applicable(Example e)
Test if the rule is applicable to the given examples without updating the corresponding value.

Specified by:
applicable in class Hypothesis


init

public java.util.LinkedList<Hypothesis> init(int minComplexity)
Creates all rules with length<=minComplexity.
Specified by:
init in class Hypothesis

refine

public java.util.LinkedList<Hypothesis> refine()
Creates all successors of the rule that have one more literal.

Specified by:
refine in class Hypothesis


canBeRefined

public boolean canBeRefined()
Returns true only if this hypothesis can still be refined.

Specified by:
canBeRefined in class Hypothesis


getPrediction

public int getPrediction()
Returns the index of prediction of this rule

Specified by:
getPrediction in class Hypothesis


getComplexity

public int getComplexity()
Returns the lenght of the premise of the rule.

Specified by:
getComplexity in class Hypothesis


equals

public boolean equals(java.lang.Object o)
Returns true if the two rules have the same premise and make the same perdiction.

Overrides:
equals in class java.lang.Object


toString

public java.lang.String toString()
Returns a String representation of the rule.

Overrides:
toString in class java.lang.Object


getLiterals

public Literal[] getLiterals()
Returns the literals in the premise of this rule.



Copyright © 2001-2006