public enum Link extends Enum<Link>
Part of generalized linear model framework.
Also check https://github.com/JohnLangford/vowpal_wabbit/wiki/Loss-functions
Modifier and Type | Method and Description |
---|---|
static Link |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Link[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Link identity
public static final Link logistic
public static final Link glf1
public static final Link poisson
public static Link[] values()
for (Link c : Link.values()) System.out.println(c);
public static Link 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.