public static enum UIListener.HistogramType extends Enum<UIListener.HistogramType>
Builder#histograms(int, HistogramType...). Note that multiple histogram types may be collected simultaneously.| Enum Constant and Description |
|---|
ACTIVATION_GRADIENTS |
ACTIVATIONS |
PARAMETER_GRADIENTS |
PARAMETER_UPDATES |
PARAMETERS |
| Modifier and Type | Method and Description |
|---|---|
static UIListener.HistogramType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UIListener.HistogramType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UIListener.HistogramType PARAMETERS
public static final UIListener.HistogramType PARAMETER_GRADIENTS
public static final UIListener.HistogramType PARAMETER_UPDATES
public static final UIListener.HistogramType ACTIVATIONS
public static final UIListener.HistogramType ACTIVATION_GRADIENTS
public static UIListener.HistogramType[] values()
for (UIListener.HistogramType c : UIListener.HistogramType.values()) System.out.println(c);
public static UIListener.HistogramType 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 © 2021. All rights reserved.