public enum GradientNormalization extends Enum<GradientNormalization>
Enum Constant and Description |
---|
ClipElementWiseAbsoluteValue |
ClipL2PerLayer |
ClipL2PerParamType |
None |
RenormalizeL2PerLayer |
RenormalizeL2PerParamType |
Modifier and Type | Method and Description |
---|---|
static GradientNormalization |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GradientNormalization[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GradientNormalization None
public static final GradientNormalization RenormalizeL2PerLayer
public static final GradientNormalization RenormalizeL2PerParamType
public static final GradientNormalization ClipElementWiseAbsoluteValue
public static final GradientNormalization ClipL2PerLayer
public static final GradientNormalization ClipL2PerParamType
public static GradientNormalization[] values()
for (GradientNormalization c : GradientNormalization.values()) System.out.println(c);
public static GradientNormalization 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 © 2022. All rights reserved.