public class C45Trainer extends ClassifierTrainer implements Boostable
This implementation uses MDL for pruning.
J. R. Quinlan
"Improved Use of Continuous Attributes in C4.5"
ftp://ftp.cs.cmu.edu/project/jair/volume4/quinlan96a.ps
J. R. Quinlan and R. L. Rivest
"Inferring Decision Trees Using Minimum Description Length Principle"
| Constructor and Description |
|---|
C45Trainer()
Uses default values: not depth limited tree with
a minimum of 2 instances in each leaf node
|
C45Trainer(boolean doPruning) |
C45Trainer(int maxDepth)
Construct a depth-limited tree with the given depth limit
|
C45Trainer(int maxDepth,
boolean doPruning) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
getDepthLimited() |
boolean |
getDoPruning() |
int |
getMaxDepth() |
int |
getMinNumInsts() |
void |
setDepthLimited(boolean depthLimited) |
void |
setDoPruning(boolean doPruning) |
void |
setMaxDepth(int maxDepth) |
void |
setMinNumInsts(int minNumInsts) |
protected void |
splitTree(C45.Node node,
int depth) |
Classifier |
train(InstanceList trainingList,
InstanceList validationList,
InstanceList testSet,
ClassifierEvaluating evaluator,
Classifier initialClassifier)
Return a new classifier tuned using the three arguments.
|
public C45Trainer()
public C45Trainer(int maxDepth)
public C45Trainer(boolean doPruning)
public C45Trainer(int maxDepth,
boolean doPruning)
public void setDoPruning(boolean doPruning)
public boolean getDoPruning()
public void setDepthLimited(boolean depthLimited)
public boolean getDepthLimited()
public void setMaxDepth(int maxDepth)
public int getMaxDepth()
public void setMinNumInsts(int minNumInsts)
public int getMinNumInsts()
protected void splitTree(C45.Node node, int depth)
public Classifier train(InstanceList trainingList, InstanceList validationList, InstanceList testSet, ClassifierEvaluating evaluator, Classifier initialClassifier)
ClassifierTrainertrain in class ClassifierTrainertrainingList - examples used to set parameters.validationList - examples used to tune meta-parameters. May be null.testSet - examples not examined at all for training, but passed on to diagnostic routines. May be null.initialClassifier - training process may start from here. The parameters of the initialClassifier are not modified. May be null.Copyright © 2019 JULIE Lab, Germany. All rights reserved.