public static enum ROCScoreFunction.ROCType extends Enum<ROCScoreFunction.ROCType>
ROC to perform evaluation (single output binary classification)ROCBinary to perform evaluation (multi-output/multi-task binary classification)ROCMultiClass to perform evaluation (1 vs. all multi-class classification)| Enum Constant and Description |
|---|
BINARY |
MULTICLASS |
ROC |
| Modifier and Type | Method and Description |
|---|---|
static ROCScoreFunction.ROCType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ROCScoreFunction.ROCType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ROCScoreFunction.ROCType ROC
public static final ROCScoreFunction.ROCType BINARY
public static final ROCScoreFunction.ROCType MULTICLASS
public static ROCScoreFunction.ROCType[] values()
for (ROCScoreFunction.ROCType c : ROCScoreFunction.ROCType.values()) System.out.println(c);
public static ROCScoreFunction.ROCType 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 nullCopyright © 2020. All rights reserved.