public static enum GBMModel.GBMParameters.Family extends java.lang.Enum<GBMModel.GBMParameters.Family>
TODO: Replace with drop-down that displays different distributions depending on cont/cat response
| Enum Constant and Description |
|---|
AUTO |
bernoulli |
gaussian |
multinomial |
| Modifier and Type | Method and Description |
|---|---|
static GBMModel.GBMParameters.Family |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GBMModel.GBMParameters.Family[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GBMModel.GBMParameters.Family AUTO
public static final GBMModel.GBMParameters.Family bernoulli
public static final GBMModel.GBMParameters.Family multinomial
public static final GBMModel.GBMParameters.Family gaussian
public static GBMModel.GBMParameters.Family[] values()
for (GBMModel.GBMParameters.Family c : GBMModel.GBMParameters.Family.values()) System.out.println(c);
public static GBMModel.GBMParameters.Family 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