Example usage for weka.classifiers Classifier subclass-usage

List of usage examples for weka.classifiers Classifier subclass-usage

Introduction

In this page you can find the example usage for weka.classifiers Classifier subclass-usage.

Usage

From source file com.reactivetechnologies.platform.analytics.core.IncrementalClassifierBean.java

public class IncrementalClassifierBean extends Classifier implements UpdateableClassifier, Regression {

    private static final Logger log = LoggerFactory.getLogger(IncrementalClassifierBean.class);

    private final Classifier clazzifier;
    private ExecutorService thread;

From source file core.classifier.MyFirstClassifier.java

/**
 <!-- globalinfo-start -->
 * Implements John Platt's sequential minimal optimization algorithm for training a support vector classifier.<br/>
 * <br/>
 * This implementation globally replaces all missing values and transforms nominal attributes into binary ones. It also normalizes all attributes by default. (In that case the coefficients in the output are based on the normalized data, not the original data --- this is important for interpreting the classifier.)<br/>
 * <br/>

From source file decisiontree.ID3tree.java

/**
 *
 * @author Harvey
 */
public class ID3tree extends Classifier {
    Instances mInstances;

From source file decisiontree.MyC45.java

/**
 *
 * @author Asus
 */
public class MyC45 extends Classifier {
    /** for serialization */

From source file decisiontree.MyID3.java

public class MyID3 extends Classifier {

    private MyID3[] child;
    private Attribute splitAttr;
    private double leafValue;
    private double[] leafDist;

From source file decisiontreeclassifier.ITree2.java

/**
 *
 * @author Mackenzie Bodily
 */
public class ITree2 extends Classifier {
    private Instances dataSet;

From source file edu.drexel.psal.jstylo.verifiers.WLSVM.java

public class WLSVM extends Classifier
        implements WeightedInstancesHandler, OptionHandler, Serializable, TechnicalInformationHandler {

    private static final Logger LOG = LoggerFactory.getLogger(WLSVM.class);

    protected static final long serialVersionUID = 14172;

From source file experimentshell.HardCodedClassifier.java

/**
 *
 * @author Harvey
 */
public class HardCodedClassifier extends Classifier {

From source file experimentshell.knn.java

/**
 *
 * @author mormon
 */
public class knn extends Classifier {

From source file experimentshell.KnnClassifier.java

/**
 *
 * @author Harvey
 */
public class KnnClassifier extends Classifier {
    Instances mInstances;