public static enum Recommender.Measure extends java.lang.Enum<Recommender.Measure>
Enum Constant and Description |
---|
ASYMM |
AUC |
D10 |
D5 |
MAE |
MAP |
MRR |
NDCG |
NMAE |
Pre10 |
Pre5 |
Rec10 |
Rec5 |
RMSE |
TestTime |
TrainTime |
Modifier and Type | Method and Description |
---|---|
static Recommender.Measure |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Recommender.Measure[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Recommender.Measure MAE
public static final Recommender.Measure RMSE
public static final Recommender.Measure NMAE
public static final Recommender.Measure ASYMM
public static final Recommender.Measure D5
public static final Recommender.Measure D10
public static final Recommender.Measure Pre5
public static final Recommender.Measure Pre10
public static final Recommender.Measure Rec5
public static final Recommender.Measure Rec10
public static final Recommender.Measure MAP
public static final Recommender.Measure MRR
public static final Recommender.Measure NDCG
public static final Recommender.Measure AUC
public static final Recommender.Measure TrainTime
public static final Recommender.Measure TestTime
public static Recommender.Measure[] values()
for (Recommender.Measure c : Recommender.Measure.values()) System.out.println(c);
public static Recommender.Measure 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