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