|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectedu.udo.cs.yale.operator.learner.igss.hypothesis.Hypothesis
public abstract class Hypothesis
Abstract superclass for all possible kinds of hypothesis.
Field Summary | |
---|---|
protected double |
coveredWeight
Stores the total weight of all examples covered by this hypothesis. |
protected static boolean |
createAllHypothesis
Create h->Y+/Y- or h->Y+ only. |
static int |
FIRST_TYPE_INDEX
|
static java.lang.String[] |
HYPOTHESIS_SPACE_TYPES
|
private static Attribute |
label
The label attribute. |
static int |
LAST_TYPE_INDEX
|
static int |
NEGATIVE_CLASS
|
static int |
POSITIVE_CLASS
|
protected double |
positiveWeight
Stores the weight of examples covered by this hypothesis with correct prediction. |
protected static boolean |
rejectionSampling
Indicates if rejection sampling is used to draw the examples that this rule is applied to. |
static int |
TYPE_RULE
|
Constructor Summary | |
---|---|
Hypothesis()
|
|
Hypothesis(Attribute[] regulars,
Attribute l,
boolean rs,
boolean createAll)
Create a new dummy hypothesis to allow calling the 'init' method, initialize the regularAttributes, label and p0 fields. |
Method Summary | |
---|---|
abstract boolean |
applicable(Example e)
Tests if the hypothesis is applicable to the example without updating the internal statistics of the hypothesis. |
abstract void |
apply(Example e)
Hypothesis is applied to the example and internal statistics of the hypothesis are updated. |
abstract boolean |
canBeRefined()
Returns true only if this hypothesis can still be refined. |
abstract Hypothesis |
clone()
Clone method. |
abstract int |
getComplexity()
Returns complexity of the hypothesis. |
double |
getCoveredWeight()
Returns the covered weight of this hypothesis. |
static Attribute |
getLabel()
Returns the label. |
double |
getPositiveWeight()
Returns the covered positive weight of this hypothesis. |
abstract int |
getPrediction()
Returns the label index the hypothesis predicts. |
abstract java.util.LinkedList<Hypothesis> |
init(int minComplexity)
Used to generate the first hypothesis or the first group of hypothesis. |
abstract java.util.LinkedList<Hypothesis> |
refine()
Generates new hypothesis by adding one degree of complexity and creating all rules that are possible now. |
void |
reset()
Sets 'coveredWeight' and 'positiveWeight' back to 0.0d. |
void |
setCoveredWeight(double value)
Sets the covered weight of this hypothesis. |
void |
setPositiveWeight(double value)
Sets the covered positive weight of this hypothesis. |
Methods inherited from class java.lang.Object |
---|
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static final java.lang.String[] HYPOTHESIS_SPACE_TYPES
public static final int FIRST_TYPE_INDEX
public static final int TYPE_RULE
public static final int LAST_TYPE_INDEX
public static final int POSITIVE_CLASS
public static final int NEGATIVE_CLASS
private static Attribute label
protected static boolean rejectionSampling
protected double coveredWeight
protected double positiveWeight
protected static boolean createAllHypothesis
Constructor Detail |
---|
public Hypothesis(Attribute[] regulars, Attribute l, boolean rs, boolean createAll)
public Hypothesis()
Method Detail |
---|
public abstract Hypothesis clone()
clone
in class java.lang.Object
public abstract int getPrediction()
public static Attribute getLabel()
public void reset()
public double getCoveredWeight()
public void setCoveredWeight(double value)
public double getPositiveWeight()
public void setPositiveWeight(double value)
public abstract void apply(Example e)
public abstract boolean applicable(Example e)
public abstract java.util.LinkedList<Hypothesis> refine()
public abstract boolean canBeRefined()
public abstract java.util.LinkedList<Hypothesis> init(int minComplexity)
public abstract int getComplexity()
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |