public static enum BBR.Prior extends Enum<BBR.Prior>
Enum Constant and Description |
---|
GAUSSIAN
Gaussian prior equivalent to L2 regularization
|
LAPLACE
Laplace prior equivalent to L1 regularization
|
Modifier and Type | Method and Description |
---|---|
static BBR.Prior |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BBR.Prior[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BBR.Prior LAPLACE
public static final BBR.Prior GAUSSIAN
public static BBR.Prior[] values()
for (BBR.Prior c : BBR.Prior.values()) System.out.println(c);
public static BBR.Prior 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 © 2017. All rights reserved.