public enum StatsType extends Enum<StatsType>
StatsListener
Note: Gradients are pre-update (i.e., raw gradients - pre-LR/momentum/rmsprop etc), Updates are post update| Enum Constant and Description |
|---|
Activations |
Gradients |
Parameters |
Updates |
| Modifier and Type | Method and Description |
|---|---|
static StatsType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StatsType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StatsType Parameters
public static final StatsType Gradients
public static final StatsType Updates
public static final StatsType Activations
public static StatsType[] values()
for (StatsType c : StatsType.values()) System.out.println(c);
public static StatsType 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.