public static enum ScoreKeeper.StoppingMetric extends java.lang.Enum<ScoreKeeper.StoppingMetric>
Enum Constant and Description |
---|
AUC |
AUTO |
deviance |
lift_top_group |
logloss |
MAE |
mean_per_class_error |
misclassification |
MSE |
RMSE |
Modifier and Type | Method and Description |
---|---|
static ScoreKeeper.StoppingMetric |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ScoreKeeper.StoppingMetric[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScoreKeeper.StoppingMetric AUTO
public static final ScoreKeeper.StoppingMetric deviance
public static final ScoreKeeper.StoppingMetric logloss
public static final ScoreKeeper.StoppingMetric MSE
public static final ScoreKeeper.StoppingMetric RMSE
public static final ScoreKeeper.StoppingMetric MAE
public static final ScoreKeeper.StoppingMetric AUC
public static final ScoreKeeper.StoppingMetric lift_top_group
public static final ScoreKeeper.StoppingMetric misclassification
public static final ScoreKeeper.StoppingMetric mean_per_class_error
public static ScoreKeeper.StoppingMetric[] values()
for (ScoreKeeper.StoppingMetric c : ScoreKeeper.StoppingMetric.values()) System.out.println(c);
public static ScoreKeeper.StoppingMetric 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