|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<CorpusParameters.DimensionalityReduction>
tml.corpus.CorpusParameters.DimensionalityReduction
public static enum CorpusParameters.DimensionalityReduction
Criteria by which a SemanticSpace
will reduce (or not) the
dimensions of the space.
Enum Constant Summary | |
---|---|
NO
No dimensionality reduction will be performed. |
|
NUM
This method selects the number of dimensions based on a fixed number. |
|
PCT
This method selects the number of dimensions based on a percentage of the total number of dimensions in the space. |
|
VARPCT
This method selects the number of dimensions based on how much variance they cover. |
Method Summary | |
---|---|
static CorpusParameters.DimensionalityReduction |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static CorpusParameters.DimensionalityReduction[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final CorpusParameters.DimensionalityReduction VARPCT
public static final CorpusParameters.DimensionalityReduction NUM
public static final CorpusParameters.DimensionalityReduction PCT
public static final CorpusParameters.DimensionalityReduction NO
Method Detail |
---|
public static CorpusParameters.DimensionalityReduction[] values()
for (CorpusParameters.DimensionalityReduction c : CorpusParameters.DimensionalityReduction.values()) System.out.println(c);
public static CorpusParameters.DimensionalityReduction 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 name
java.lang.NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |