Example usage for weka.classifiers Classifier interface-usage

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

Introduction

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

Usage

From source file machinelearning_cw.BasicKNN.java

/**
 *
 * @author 100024721
 */
public class BasicKNN implements Classifier {

From source file meka.classifiers.multilabel.MultiLabelClassifier.java

/**
 * Interface for multi-label classifiers.
 *
 * @author FracPete (fracpete at waikato dot ac dot nz)
 * @version $Revision$
 */

From source file meka.classifiers.multitarget.MultiTargetClassifier.java

/**
 *  MultiTargetClassifier.java - A Multi-Target (i.e., Multi-Output / Multi-Dimensional) Classifier.
 *  Implementing this interface signals to the Evaluation that we are dealing with multi-target data, 
 *  and a different evaluation output is given. Training and classification is the same, using the 
 *  methods <i>buildClassifier(Instances)</i> and <i>distributionForInstance(Instance)</i>, except that
 *  the latter only returns the argmax value (i.e., what is to be considered the predicted value). 

From source file ml.ann.BackPropagation.java

/**
 *
 * @author tegarnization
 */
public class BackPropagation
        implements Classifier, OptionHandler, WeightedInstancesHandler, Randomizable, Serializable {

From source file ml.ann.SinglePTR.java

/**
 *
 * @author Ivana Clairine
 */
public class SinglePTR implements Classifier {
    public int num_instance;

From source file NaiveBayes.NaiveBayes13514004.java

/**
 *
 * @author UX303L
 */

public class NaiveBayes13514004 implements Classifier, Serializable {

From source file tubes2ai.AIJKFFNN.java

/**
 *
 * @author i
 */
public class AIJKFFNN implements Classifier, OptionHandler, CapabilitiesHandler, Serializable, Randomizable {
    private Vector<Neuron> inputLayer;

From source file tubes2ai.AIJKNaiveBayes.java

/**
 *
 * @author Johan
 */
public class AIJKNaiveBayes implements Classifier, CapabilitiesHandler, Serializable {

From source file tubesduaai.FFNN.java

/**
 *
 * @author Nugroho Satriyanto <massatriya@gmail.com>
 */
public class FFNN implements Classifier, Serializable {

From source file tubesduaai.NB_030.java

/**
 *
 * @author harry
 */
public class NB_030 implements Classifier, Serializable {