org.encog.util.arrayutil
public enum NormalizationAction extends Enum<NormalizationAction>
Enum Constant and Description |
---|
Equilateral
Use the equilateral classification method.
|
Ignore
Ignore this column, do not include in the output.
|
Normalize
Normalize this column.
|
OneOf
Use the "one-of" classification method.
|
PassThrough
Do not normalize the column, just allow it to pass through.
|
SingleField
Use a single-field classification method.
|
Modifier and Type | Method and Description |
---|---|
boolean |
isClassify() |
static NormalizationAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NormalizationAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NormalizationAction PassThrough
public static final NormalizationAction Normalize
public static final NormalizationAction Ignore
public static final NormalizationAction OneOf
public static final NormalizationAction Equilateral
public static final NormalizationAction SingleField
public static NormalizationAction[] values()
for (NormalizationAction c : NormalizationAction.values()) System.out.println(c);
public static NormalizationAction 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 nullpublic boolean isClassify()
Copyright © 2014. All Rights Reserved.