public enum ClassmapType extends java.lang.Enum<ClassmapType>
Enum Constant and Description |
---|
CUSTOM
Generic flag for any custom dataset supplied by the user.
|
DARKNET_IMAGENET
ImageNet classmap which DarkNet19 was trained on.
|
IMAGENET
Standard ImageNet classmap.
|
VGGFACE
Classmap for the VGGFace dataset.
|
Modifier and Type | Method and Description |
---|---|
static ClassmapType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ClassmapType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ClassmapType IMAGENET
public static final ClassmapType DARKNET_IMAGENET
public static final ClassmapType VGGFACE
public static final ClassmapType CUSTOM
public static ClassmapType[] values()
for (ClassmapType c : ClassmapType.values()) System.out.println(c);
public static ClassmapType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null