public class AlgorithmConfiguration
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
int |
attributeSplitChoices
The number of top ranked attribute splits to randomly pick from
(default value 1 has no randomness)
|
int |
attributesToSplit
The number of attributes randomly selected to find the best from.
|
double |
bagCountMultiplier
The value used to determine the influence of instance counts when
using bag counts.
|
int |
kBEPPConstant
The constant used to scale the influence of a node's size on its
split score.
|
int |
method
The method used to score a split (1 = Gini, 2 = Max BEPP, 3 = SSBEPP)
|
boolean |
unbiasedEstimate
Determines whether an unbiased score is used to estimate the proportion
of positives
|
boolean |
useBagStatistics
Determines whether bag stats are used to score splits, or instance
stats.
|
Constructor and Description |
---|
AlgorithmConfiguration()
Default constructor that assigns default values.
|
AlgorithmConfiguration(int method,
boolean unbiasedEstimate,
int kBEPPConstant,
boolean bagStatistics,
double bagCountMultiplier,
int attributesToSplit,
int attributeSplitChoices)
Constructor that sets algorithm parameters based on arguments.
|
public int method
public boolean unbiasedEstimate
public int kBEPPConstant
public boolean useBagStatistics
public double bagCountMultiplier
public int attributesToSplit
public int attributeSplitChoices
public AlgorithmConfiguration()
public AlgorithmConfiguration(int method, boolean unbiasedEstimate, int kBEPPConstant, boolean bagStatistics, double bagCountMultiplier, int attributesToSplit, int attributeSplitChoices)