public static enum SVM.Multiclass extends Enum<SVM.Multiclass>
| Enum Constant and Description |
|---|
ONE_VS_ALL
One vs all classification.
|
ONE_VS_ONE
One vs one classification.
|
| Modifier and Type | Method and Description |
|---|---|
static SVM.Multiclass |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SVM.Multiclass[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SVM.Multiclass ONE_VS_ONE
public static final SVM.Multiclass ONE_VS_ALL
public static SVM.Multiclass[] values()
for (SVM.Multiclass c : SVM.Multiclass.values()) System.out.println(c);
public static SVM.Multiclass 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 © 2015. All rights reserved.