public static enum PredictiveModelQuality.Usage extends Enum<PredictiveModelQuality.Usage>
| Enum Constant and Description |
|---|
test
Applying the model to new data after it has been built
|
training
Initial model-building phase
|
validation
The model-building process's internal quality-measurement, using
data that was not part of the initial optimization phase
|
| Modifier and Type | Method and Description |
|---|---|
static PredictiveModelQuality.Usage |
getDefault() |
static PredictiveModelQuality.Usage |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PredictiveModelQuality.Usage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PredictiveModelQuality.Usage training
public static final PredictiveModelQuality.Usage test
public static final PredictiveModelQuality.Usage validation
public static PredictiveModelQuality.Usage[] values()
for (PredictiveModelQuality.Usage c : PredictiveModelQuality.Usage.values()) System.out.println(c);
public static PredictiveModelQuality.Usage valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static PredictiveModelQuality.Usage getDefault()
Copyright © 2016 Actian Corporation. All rights reserved.