Example usage for Java weka.classifiers AbstractClassifier fields, constructors, methods, implement or subclass
The text is from its open source code.
double | classifyInstance(Instance instance) Classifies the given test instance. |
double[] | distributionForInstance(Instance instance) Predicts the class memberships for a given instance. |
Classifier | forName(String classifierName, String[] options) Creates a new instance of a classifier given it's class name and (optional) arguments to pass to it's setOptions method. |
String[] | getOptions() Gets the current settings of the Classifier. |
Classifier[] | makeCopies(Classifier model, int num) Creates a given number of deep copies of the given classifier using serialization. |
Classifier | makeCopy(Classifier model) Creates a deep copy of the given classifier using serialization. |
void | runClassifier(Classifier classifier, String[] options) runs the classifier instance with the given options. |
void | setOptions(String[] options) Parses a given list of options. |