public enum EvaluatorType extends Enum<EvaluatorType>
| Enum Constant and Description |
|---|
ACCURACY |
ALL |
AUC |
F_MEASURE |
P_PRECISION |
P_RECALL |
PF_MEASURE |
PR_PRECISION |
PR_RECALL |
PRECISION |
PRF_MEASURE |
RECALL |
| Modifier and Type | Method and Description |
|---|---|
static EvaluatorType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EvaluatorType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EvaluatorType PRECISION
public static final EvaluatorType RECALL
public static final EvaluatorType F_MEASURE
public static final EvaluatorType P_PRECISION
public static final EvaluatorType P_RECALL
public static final EvaluatorType PF_MEASURE
public static final EvaluatorType ACCURACY
public static final EvaluatorType AUC
public static final EvaluatorType PR_PRECISION
public static final EvaluatorType PR_RECALL
public static final EvaluatorType PRF_MEASURE
public static final EvaluatorType ALL
public static EvaluatorType[] values()
for (EvaluatorType c : EvaluatorType.values()) System.out.println(c);
public static EvaluatorType 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.