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