public class RegressionByDiscretization extends SingleClassifierEnhancer implements IntervalEstimator, ConditionalDensityEstimator
-B <int> Number of bins for equal-width discretization (default 10).
-E Whether to delete empty bins after discretization (default false).
-F Use equal-frequency instead of equal-width discretization.
-D If set, classifier is run in debug mode and may output additional info to the console
-W Full name of base classifier. (default: weka.classifiers.trees.J48)
Options specific to classifier weka.classifiers.trees.J48:
-U Use unpruned tree.
-C <pruning confidence> Set confidence threshold for pruning. (default 0.25)
-M <minimum number of instances> Set minimum number of instances per leaf. (default 2)
-R Use reduced error pruning.
-N <number of folds> Set number of folds for reduced error pruning. One fold is used as pruning set. (default 3)
-B Use binary splits only.
-S Don't perform subtree raising.
-L Do not clean up after the tree has been built.
-A Laplace smoothing for predicted probabilities.
-Q <seed> Seed for random data shuffling (default 1).
Modifier and Type | Field and Description |
---|---|
static int |
ESTIMATOR_HISTOGRAM
Use histogram estimator
|
static int |
ESTIMATOR_KERNEL
filter: Standardize training data
|
static int |
ESTIMATOR_NORMAL
filter: No normalization/standardization
|
static Tag[] |
TAGS_ESTIMATOR
The filter to apply to the training data
|
Constructor and Description |
---|
RegressionByDiscretization()
Default constructor.
|
Modifier and Type | Method and Description |
---|---|
void |
buildClassifier(Instances instances)
Generates the classifier.
|
double |
classifyInstance(Instance instance)
Returns a predicted class for the test instance.
|
String |
deleteEmptyBinsTipText()
Returns the tip text for this property
|
String |
estimatorTypeTipText()
Returns the tip text for this property
|
Capabilities |
getCapabilities()
Returns default capabilities of the classifier.
|
boolean |
getDeleteEmptyBins()
Gets whether empty bins are deleted.
|
SelectedTag |
getEstimatorType()
Get the estimator type
|
boolean |
getMinimizeAbsoluteError()
Gets whether to min.
|
int |
getNumBins()
Gets the number of bins numeric attributes will be divided into
|
String[] |
getOptions()
Gets the current settings of the Classifier.
|
String |
getRevision()
Returns the revision string.
|
TechnicalInformation |
getTechnicalInformation()
Returns an instance of a TechnicalInformation object, containing
detailed information about the technical background of this class,
e.g., paper reference or book this class is based on.
|
boolean |
getUseEqualFrequency()
Get the value of UseEqualFrequency.
|
String |
globalInfo()
Returns a string describing classifier
|
Enumeration |
listOptions()
Returns an enumeration describing the available options.
|
double |
logDensity(Instance instance,
double value)
Returns natural logarithm of density estimate for given value based on given instance.
|
static void |
main(String[] argv)
Main method for testing this class.
|
String |
minimizeAbsoluteErrorTipText()
Returns the tip text for this property
|
String |
numBinsTipText()
Returns the tip text for this property
|
double[][] |
predictIntervals(Instance instance,
double confidenceLevel)
Returns an N * 2 array, where N is the number of prediction
intervals.
|
void |
setDeleteEmptyBins(boolean b)
Sets whether to delete empty bins.
|
void |
setEstimatorType(SelectedTag newEstimator)
Set the estimator
|
void |
setMinimizeAbsoluteError(boolean b)
Sets whether to min.
|
void |
setNumBins(int numBins)
Sets the number of bins to divide each selected numeric attribute into
|
void |
setOptions(String[] options)
Parses a given list of options.
|
void |
setUseEqualFrequency(boolean newUseEqualFrequency)
Set the value of UseEqualFrequency.
|
String |
toString()
Returns a description of the classifier.
|
String |
useEqualFrequencyTipText()
Returns the tip text for this property
|
classifierTipText, getClassifier, setClassifier
debugTipText, distributionForInstance, forName, getDebug, makeCopies, makeCopy, runClassifier, setDebug
public static final int ESTIMATOR_HISTOGRAM
public static final int ESTIMATOR_KERNEL
public static final int ESTIMATOR_NORMAL
public static final Tag[] TAGS_ESTIMATOR
public RegressionByDiscretization()
public String globalInfo()
public TechnicalInformation getTechnicalInformation()
public Capabilities getCapabilities()
getCapabilities
in interface Classifier
getCapabilities
in interface CapabilitiesHandler
getCapabilities
in class SingleClassifierEnhancer
Capabilities
public void buildClassifier(Instances instances) throws Exception
buildClassifier
in interface Classifier
instances
- set of instances serving as training dataException
- if the classifier has not been generated successfullypublic double[][] predictIntervals(Instance instance, double confidenceLevel) throws Exception
predictIntervals
in interface IntervalEstimator
inst
- the instance to make the prediction for.confidenceLevel
- the percentage of cases that the interval should cover.Exception
- if the intervals can't be computedpublic double logDensity(Instance instance, double value) throws Exception
logDensity
in interface ConditionalDensityEstimator
inst
- the instance to make the prediction for.the
- value to make the prediction for.Exception
- if the intervals can't be computedpublic double classifyInstance(Instance instance) throws Exception
classifyInstance
in interface Classifier
classifyInstance
in class AbstractClassifier
instance
- the instance to be classifiedException
- if the prediction couldn't be madepublic Enumeration listOptions()
listOptions
in interface OptionHandler
listOptions
in class SingleClassifierEnhancer
public void setOptions(String[] options) throws Exception
setOptions
in interface OptionHandler
setOptions
in class SingleClassifierEnhancer
options
- the list of options as an array of stringsException
- if an option is not supportedpublic String[] getOptions()
getOptions
in interface OptionHandler
getOptions
in class SingleClassifierEnhancer
public String numBinsTipText()
public int getNumBins()
public void setNumBins(int numBins)
numBins
- the number of binspublic String deleteEmptyBinsTipText()
public boolean getDeleteEmptyBins()
public void setDeleteEmptyBins(boolean b)
b
- if true, empty bins will be deletedpublic String minimizeAbsoluteErrorTipText()
public boolean getMinimizeAbsoluteError()
public void setMinimizeAbsoluteError(boolean b)
b
- if true, abs. err. is minimizedpublic String useEqualFrequencyTipText()
public boolean getUseEqualFrequency()
public void setUseEqualFrequency(boolean newUseEqualFrequency)
newUseEqualFrequency
- Value to assign to UseEqualFrequency.public String estimatorTypeTipText()
public SelectedTag getEstimatorType()
public void setEstimatorType(SelectedTag newEstimator)
newEstimator
- the estimator to usepublic String toString()
public String getRevision()
getRevision
in interface RevisionHandler
getRevision
in class AbstractClassifier
public static void main(String[] argv)
argv
- the optionsCopyright © 2012 University of Waikato, Hamilton, NZ. All Rights Reserved.