public enum PretrainedType extends Enum<PretrainedType>
Enum Constant and Description |
---|
CIFAR10 |
IMAGENET |
IMAGENETLARGE |
MNIST |
SEGMENT |
VGGFACE |
Modifier and Type | Method and Description |
---|---|
static PretrainedType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PretrainedType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PretrainedType IMAGENET
public static final PretrainedType IMAGENETLARGE
public static final PretrainedType MNIST
public static final PretrainedType CIFAR10
public static final PretrainedType VGGFACE
public static final PretrainedType SEGMENT
public static PretrainedType[] values()
for (PretrainedType c : PretrainedType.values()) System.out.println(c);
public static PretrainedType 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 © 2020. All rights reserved.