| Enum Constant and Description |
|---|
Hinge |
LeastSquares |
Logistic |
| Modifier and Type | Method and Description |
|---|---|
org.apache.spark.mllib.optimization.Gradient |
get() |
static Gradient |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Gradient[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Gradient Hinge
public static final Gradient LeastSquares
public static final Gradient Logistic
public static Gradient[] values()
for (Gradient c : Gradient.values()) System.out.println(c);
public static Gradient 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 nullpublic org.apache.spark.mllib.optimization.Gradient get()