public static enum ScoreKeeper.StoppingMetric extends java.lang.Enum<ScoreKeeper.StoppingMetric>
Enum Constant and Description |
---|
AUC |
AUTO |
deviance |
lift_top_group |
logloss |
misclassification |
MSE |
r2 |
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 AUC
public static final ScoreKeeper.StoppingMetric lift_top_group
public static final ScoreKeeper.StoppingMetric r2
public static final ScoreKeeper.StoppingMetric misclassification
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