Module datarush.analytics
Enum PredictiveModelQuality.Usage
- java.lang.Object
-
- java.lang.Enum<PredictiveModelQuality.Usage>
-
- com.pervasive.datarush.analytics.pmml.PredictiveModelQuality.Usage
-
- All Implemented Interfaces:
Serializable
,Comparable<PredictiveModelQuality.Usage>
- Enclosing class:
- PredictiveModelQuality
public static enum PredictiveModelQuality.Usage extends Enum<PredictiveModelQuality.Usage>
Indicator for the phases of model-building during which a dataset may be used.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description test
Applying the model to new data after it has been builttraining
Initial model-building phasevalidation
The model-building process's internal quality-measurement, using data that was not part of the initial optimization phase
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method 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.
-
-
-
Enum Constant Detail
-
training
public static final PredictiveModelQuality.Usage training
Initial model-building phase
-
test
public static final PredictiveModelQuality.Usage test
Applying the model to new data after it has been built
-
validation
public static final PredictiveModelQuality.Usage validation
The model-building process's internal quality-measurement, using data that was not part of the initial optimization phase
-
-
Method Detail
-
values
public static PredictiveModelQuality.Usage[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (PredictiveModelQuality.Usage c : PredictiveModelQuality.Usage.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PredictiveModelQuality.Usage valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getDefault
public static PredictiveModelQuality.Usage getDefault()
- Returns:
- training, the implied value of a missing dataUsage attribute
-
-