public static enum NeuralNetwork.TrainingMethod extends Enum<NeuralNetwork.TrainingMethod>
| Enum Constant and Description |
|---|
GRADIENT_DESCENT |
| Modifier and Type | Method and Description |
|---|---|
static NeuralNetwork.TrainingMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NeuralNetwork.TrainingMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NeuralNetwork.TrainingMethod GRADIENT_DESCENT
public static NeuralNetwork.TrainingMethod[] values()
for (NeuralNetwork.TrainingMethod c : NeuralNetwork.TrainingMethod.values()) System.out.println(c);
public static NeuralNetwork.TrainingMethod 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 © 2008–2015 The Apache Software Foundation. All rights reserved.