Java weka.classifiers AbstractClassifier fields, constructors, methods, implement or subclass

Example usage for Java weka.classifiers AbstractClassifier fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for weka.classifiers AbstractClassifier.

The text is from its open source code.

Subclass

weka.classifiers.AbstractClassifier has subclasses.
Click this link to see all its subclasses.

Method

doubleclassifyInstance(Instance instance)
Classifies the given test instance.
double[]distributionForInstance(Instance instance)
Predicts the class memberships for a given instance.
ClassifierforName(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.
ClassifiermakeCopy(Classifier model)
Creates a deep copy of the given classifier using serialization.
voidrunClassifier(Classifier classifier, String[] options)
runs the classifier instance with the given options.
voidsetOptions(String[] options)
Parses a given list of options.