|
|||||||||
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.OperatorChain
edu.udo.cs.yale.operator.learner.meta.SDRulesetInduction
public class SDRulesetInduction
Subgroup discovery learner.
Field Summary | |
---|---|
private int |
currentIteration
|
static java.lang.String |
GAMMA
Boolean parameter to specify whether the label priors should be equally likely after first iteration. |
static java.lang.String |
INTERNAL_BOOTSTRAP
Name of the flag indicating internal bootstrapping. |
static double |
MIN_ADVANTAGE
Discard models with an advantage of less than the specified value. |
static java.lang.String |
NUM_OF_ITERATIONS
Name of the variable specifying the maximal number of iterations of the learner. |
private double |
performance
|
static java.lang.String |
REWEIGHT
Boolean parameter: true for additive reweighting, false for multiplicative. |
static java.lang.String |
ROC_FILTER
A parameter whether to discard all rules not lying on the convex hull in ROC space. |
static java.lang.String |
TIMES_COVERED
Name of special attribute counting the times an example has been covered by a rule. |
Constructor Summary | |
---|---|
SDRulesetInduction(OperatorDescription description)
Constructor. |
Method Summary | |
---|---|
IOObject[] |
apply()
Constructs a Model repeatedly running a weak learner,
reweighting the training example set accordingly, and combining the
hypothesis using the available weighted performance values. |
private void |
debugMessage(SDReweightMeasures wp)
|
InnerOperatorCondition |
getInnerOperatorCondition()
Must return a condition of the IO behaviour of all desired inner operators. |
java.lang.Class[] |
getInputClasses()
Returns the classes that are needed as input. |
int |
getMaxNumberOfInnerOperators()
Returns the maximum number of innner operators. |
int |
getMinNumberOfInnerOperators()
Returns the minimum number of innner operators. |
int |
getNumberOfSteps()
Returns the number of steps performed by this chain. |
java.lang.Class[] |
getOutputClasses()
Returns the classes that are guaranteed to be returned by apply() as additional output. |
java.util.List<ParameterType> |
getParameterTypes()
Adds the parameters "number of iterations" and "model file". |
static int |
getPosIndex(Attribute label)
|
private boolean |
isOnConvexHull(java.util.List<double[]> rocCurve,
double tpr,
double fpr)
|
private double[] |
prepareWeights(ExampleSet exampleSet)
Creates a weight attribute if not yet done and fills it with an initial value so that positive and negative examples are equally probable. |
private PredictionModel |
trainModel(ExampleSet exampleSet)
Runs the "embedded" learner on the example set and retuns a model. |
private SDEnsemble |
trainRuleset(ExampleSet trainingSet,
double[] classPriors)
Main method for training the ensemble classifier |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
public static final java.lang.String NUM_OF_ITERATIONS
public static final java.lang.String INTERNAL_BOOTSTRAP
public static final java.lang.String ROC_FILTER
public static final java.lang.String REWEIGHT
public static final java.lang.String GAMMA
public static final java.lang.String TIMES_COVERED
public static final double MIN_ADVANTAGE
private double performance
private int currentIteration
Constructor Detail |
---|
public SDRulesetInduction(OperatorDescription description)
Method Detail |
---|
public InnerOperatorCondition getInnerOperatorCondition()
OperatorChain
SimpleChainInnerOperatorCondition
. More than one
condition should be combined with help of the class
CombinedInnerOperatorCondition
.
getInnerOperatorCondition
in class OperatorChain
public int getMaxNumberOfInnerOperators()
OperatorChain
getMaxNumberOfInnerOperators
in class OperatorChain
OperatorChain.getMaxNumberOfInnerOperators()
public int getMinNumberOfInnerOperators()
OperatorChain
getMinNumberOfInnerOperators
in class OperatorChain
OperatorChain.getMinNumberOfInnerOperators()
public int getNumberOfSteps()
OperatorChain
getNumberOfSteps
in class OperatorChain
OperatorChain.getNumberOfSteps()
public java.lang.Class[] getInputClasses()
Operator
Operator.getOutputClasses()
and
Operator.apply()
if this is necessary. This default behavior can be
changed by overriding Operator.getInputDescription(Class)
. Subclasses
which implement this method should not make use of parameters since this
method is invoked by getParameterTypes(). Therefore, parameters are not
fully available at this point of time and this might lead to exceptions.
Please use InputDescriptions instead.
getInputClasses
in class Operator
Operator.getInputClasses()
public java.lang.Class[] getOutputClasses()
Operator
Operator.getInputDescription(Class)
and can be changed by
overwriting this method. Objects which are not consumed must not be
defined as additional output in this method. May be null or an empy array
(no additional output is produced).
getOutputClasses
in class Operator
Operator.getOutputClasses()
public static int getPosIndex(Attribute label)
private double[] prepareWeights(ExampleSet exampleSet) throws OperatorException
exampleSet
- the example set to be prepared
OperatorException
private PredictionModel trainModel(ExampleSet exampleSet) throws OperatorException
exampleSet
- an ExampleSet
to train a model for
Model
OperatorException
public IOObject[] apply() throws OperatorException
Model
repeatedly running a weak learner,
reweighting the training example set accordingly, and combining the
hypothesis using the available weighted performance values. If the input
contains a model, then this model is used as a starting point for
weighting the examples.
apply
in class OperatorChain
OperatorException
private SDEnsemble trainRuleset(ExampleSet trainingSet, double[] classPriors) throws OperatorException
OperatorException
private void debugMessage(SDReweightMeasures wp)
private boolean isOnConvexHull(java.util.List<double[]> rocCurve, double tpr, double fpr)
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 |