public static enum SamplingScoreBasedClassifier.SamplingScheme extends Enum<SamplingScoreBasedClassifier.SamplingScheme>
SamplingDifferentiableStatisticalModel.getSamplingGroups(int)| Enum Constant and Description |
|---|
ALL_PARAMETERS
All parameters are drawn before decision of acceptance
|
FUNCTION_WISE
The parameters of each function are drawn before decision of acceptance
|
GROUPED
The parameters of each group are drawn before decision of acceptance
|
| Modifier and Type | Method and Description |
|---|---|
static SamplingScoreBasedClassifier.SamplingScheme |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SamplingScoreBasedClassifier.SamplingScheme[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SamplingScoreBasedClassifier.SamplingScheme ALL_PARAMETERS
public static final SamplingScoreBasedClassifier.SamplingScheme FUNCTION_WISE
public static final SamplingScoreBasedClassifier.SamplingScheme GROUPED
public static SamplingScoreBasedClassifier.SamplingScheme[] values()
for (SamplingScoreBasedClassifier.SamplingScheme c : SamplingScoreBasedClassifier.SamplingScheme.values()) System.out.println(c);
public static SamplingScoreBasedClassifier.SamplingScheme 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 null