Enum EMultilabelPerformanceMeasure
- java.lang.Object
-
- java.lang.Enum<EMultilabelPerformanceMeasure>
-
- ai.libs.jaicore.ml.core.evaluation.measure.multilabel.EMultilabelPerformanceMeasure
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<EMultilabelPerformanceMeasure>
public enum EMultilabelPerformanceMeasure extends java.lang.Enum<EMultilabelPerformanceMeasure>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static EMultilabelPerformanceMeasurevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static EMultilabelPerformanceMeasure[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AUTO_MEKA_GGP_FITNESS
public static final EMultilabelPerformanceMeasure AUTO_MEKA_GGP_FITNESS
-
AUTO_MEKA_GGP_FITNESS_LOSS
public static final EMultilabelPerformanceMeasure AUTO_MEKA_GGP_FITNESS_LOSS
-
EXACT_MATCH_ACCURARY
public static final EMultilabelPerformanceMeasure EXACT_MATCH_ACCURARY
-
EXACT_MATCH_LOSS
public static final EMultilabelPerformanceMeasure EXACT_MATCH_LOSS
-
F1_MACRO_AVG_D
public static final EMultilabelPerformanceMeasure F1_MACRO_AVG_D
-
F1_MACRO_AVG_D_LOSS
public static final EMultilabelPerformanceMeasure F1_MACRO_AVG_D_LOSS
-
F1_MACRO_AVG_L
public static final EMultilabelPerformanceMeasure F1_MACRO_AVG_L
-
F1_MACRO_AVG_L_LOSS
public static final EMultilabelPerformanceMeasure F1_MACRO_AVG_L_LOSS
-
HAMMING_ACCURACY
public static final EMultilabelPerformanceMeasure HAMMING_ACCURACY
-
HAMMING_LOSS
public static final EMultilabelPerformanceMeasure HAMMING_LOSS
-
JACCARD_LOSS
public static final EMultilabelPerformanceMeasure JACCARD_LOSS
-
JACCARD_SCORE
public static final EMultilabelPerformanceMeasure JACCARD_SCORE
-
RANK_LOSS
public static final EMultilabelPerformanceMeasure RANK_LOSS
-
RANK_SCORE
public static final EMultilabelPerformanceMeasure RANK_SCORE
-
-
Method Detail
-
values
public static EMultilabelPerformanceMeasure[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (EMultilabelPerformanceMeasure c : EMultilabelPerformanceMeasure.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EMultilabelPerformanceMeasure valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-