public static enum ExhaustiveAttributeSelector.EvaluationMethod extends java.lang.Enum<ExhaustiveAttributeSelector.EvaluationMethod>
Enum Constant and Description |
---|
KFOLD_CROSSVALIDATION
Use k-fold cross-validation
|
RANDOMSPLIT_CROSSVALIDATION
Use a number of random train/test splits
|
TRAINING
Use the performance on the training set
|
Modifier and Type | Method and Description |
---|---|
static ExhaustiveAttributeSelector.EvaluationMethod |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ExhaustiveAttributeSelector.EvaluationMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExhaustiveAttributeSelector.EvaluationMethod TRAINING
public static final ExhaustiveAttributeSelector.EvaluationMethod KFOLD_CROSSVALIDATION
public static final ExhaustiveAttributeSelector.EvaluationMethod RANDOMSPLIT_CROSSVALIDATION
public static ExhaustiveAttributeSelector.EvaluationMethod[] values()
for (ExhaustiveAttributeSelector.EvaluationMethod c : ExhaustiveAttributeSelector.EvaluationMethod.values()) System.out.println(c);
public static ExhaustiveAttributeSelector.EvaluationMethod valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null