public static enum MachineLearningSetting.LearningRateAnnealingType extends Enum<MachineLearningSetting.LearningRateAnnealingType>
| Enum Constant and Description |
|---|
Exponential |
Linear |
| Modifier and Type | Method and Description |
|---|---|
static MachineLearningSetting.LearningRateAnnealingType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MachineLearningSetting.LearningRateAnnealingType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MachineLearningSetting.LearningRateAnnealingType Linear
public static final MachineLearningSetting.LearningRateAnnealingType Exponential
public static MachineLearningSetting.LearningRateAnnealingType[] values()
for (MachineLearningSetting.LearningRateAnnealingType c : MachineLearningSetting.LearningRateAnnealingType.values()) System.out.println(c);
public static MachineLearningSetting.LearningRateAnnealingType 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. All Rights Reserved.