| Enum Constant and Description |
|---|
TRAIN
Training dataset
|
VLD
Validation dataset
|
| Modifier and Type | Method and Description |
|---|---|
abstract COErrorRate |
createDftCO(COErrorRate trainCO) |
java.lang.String |
getAbbr() |
java.lang.String |
getName() |
static Partition |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Partition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Partition TRAIN
public static final Partition VLD
public static Partition[] values()
for (Partition c : Partition.values()) System.out.println(c);
public static Partition 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 nullpublic abstract COErrorRate createDftCO(COErrorRate trainCO)
trainCO - training observer required to create validation observer (not null).
Not used to create the training observer.public java.lang.String getName()
public java.lang.String getAbbr()