public static enum BayesianModel.OptimizerType extends Enum<BayesianModel.OptimizerType>
Modifier and Type | Method and Description |
---|---|
static BayesianModel.OptimizerType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BayesianModel.OptimizerType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BayesianModel.OptimizerType ADAM
public static final BayesianModel.OptimizerType ADAGRAD
public static final BayesianModel.OptimizerType SGD
public static final BayesianModel.OptimizerType NADAM
public static BayesianModel.OptimizerType[] values()
for (BayesianModel.OptimizerType c : BayesianModel.OptimizerType.values()) System.out.println(c);
public static BayesianModel.OptimizerType 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 © 2019 WSO2. All rights reserved.