public static enum BudgetedPassiveAggressiveClassification.DeletingPolicy extends Enum<BudgetedPassiveAggressiveClassification.DeletingPolicy>
Enum Constant and Description |
---|
BPA_1NN
Budgeted Passive Aggressive Nearest Neighbor: when a new support vector must be added, one is removed and the weight
of its nearest neighbor is adjusted
|
BPA_S
Budgeted Passive Aggressive Simple: when a new support vector must be added, one is removed and the weight
of the other support vectors is kept unchanged
|
Modifier and Type | Method and Description |
---|---|
static BudgetedPassiveAggressiveClassification.DeletingPolicy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BudgetedPassiveAggressiveClassification.DeletingPolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BudgetedPassiveAggressiveClassification.DeletingPolicy BPA_S
public static final BudgetedPassiveAggressiveClassification.DeletingPolicy BPA_1NN
public static BudgetedPassiveAggressiveClassification.DeletingPolicy[] values()
for (BudgetedPassiveAggressiveClassification.DeletingPolicy c : BudgetedPassiveAggressiveClassification.DeletingPolicy.values()) System.out.println(c);
public static BudgetedPassiveAggressiveClassification.DeletingPolicy 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 © 2018 Semantic Analytics Group @ Uniroma2. All rights reserved.