Class C45ModelSelection

java.lang.Object
weka.classifiers.trees.j48.ModelSelection
weka.classifiers.trees.j48.C45ModelSelection
All Implemented Interfaces:
Serializable, RevisionHandler

public class C45ModelSelection extends ModelSelection
Class for selecting a C4.5-type split for a given dataset.
Version:
$Revision: 15122 $
Author:
Eibe Frank (eibe@cs.waikato.ac.nz)
See Also:
  • Constructor Details

    • C45ModelSelection

      public C45ModelSelection(int minNoObj, Instances allData, boolean useMDLcorrection, boolean doNotMakeSplitPointActualValue)
      Initializes the split selection method with the given parameters.
      Parameters:
      minNoObj - minimum number of instances that have to occur in at least two subsets induced by split
      allData - FULL training dataset (necessary for selection of split points).
      useMDLcorrection - whether to use MDL adjustement when finding splits on numeric attributes
      doNotMakeSplitPointActualValue - if true, split point is not relocated by scanning the entire dataset for the closest data value
  • Method Details