Uses of Class
de.jungblut.classification.tree.FeatureType
-
Packages that use FeatureType Package Description de.jungblut.classification.tree -
-
Uses of FeatureType in de.jungblut.classification.tree
Methods in de.jungblut.classification.tree that return FeatureType Modifier and Type Method Description static FeatureType[]FeatureType. allNominal(int numFeatures)Creates an array that denotes the type of a feature at a given feature index.static FeatureType[]FeatureType. allNumerical(int numFeatures)Creates an array that denotes the type of a feature at a given feature index.static FeatureTypeFeatureType. valueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static FeatureType[]FeatureType. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in de.jungblut.classification.tree with parameters of type FeatureType Modifier and Type Method Description static DecisionTreeDecisionTree. create(FeatureType[] featureTypes)Creates a new decision tree with the given feature types.static RandomForestRandomForest. create(int numTrees, FeatureType[] types)Creates a new random forest, trains on one thread with the number of trees supplied.static DecisionTreeDecisionTree. createCompiledTree(FeatureType[] featureTypes)Creates a new compiled decision tree with the given feature types.DecisionTreeDecisionTree. setFeatureTypes(FeatureType[] featureTypes)Sets the type of feature per index.RandomForestRandomForest. setFeatureTypes(FeatureType[] types)
-