Example usage for weka.core RevisionHandler interface-usage

List of usage examples for weka.core RevisionHandler interface-usage

Introduction

In this page you can find the example usage for weka.core RevisionHandler interface-usage.

Usage

From source file LabeledItemSet.java

/**
 * Class for storing a set of items together with a  class label. Item sets are stored in a lexicographic
 * order, which is determined by the header information of the set of instances
 * used for generating the set of items. All methods in this class assume that
 * item sets are stored in lexicographic order.
 * The class provides the methods used for item sets in class association rule mining.

From source file bme.mace.logicdomain.Evaluation.java

/**
 * Class for evaluating machine learning models.
 * <p/>
 * 
 * -------------------------------------------------------------------
 * <p/>

From source file Business.Stopwords.java

/**
 * Class that can test whether a given string is a stop word.
 * Lowercases all words before the test. 
    
 * The format for reading and writing is one word per line, lines starting
 * with '#' are interpreted as comments and therefore skipped. 

From source file cba.AprioriItemSet.java

/**
 * Class for storing a set of items. Item sets are stored in a lexicographic
 * order, which is determined by the header information of the set of instances
 * used for generating the set of items. All methods in this class assume that
 * item sets are stored in lexicographic order.
 * The class provides methods that are used in the Apriori algorithm to construct

From source file cba.AssociatorEvaluation.java

/**
 * Class for evaluating Associaters.
 * 
 * @author  fracpete (fracpete at waikato dot ac dot nz)
 * @version $Revision: 1.5 $
 */

From source file cba.ItemSet.java

/**
 * Class for storing a set of items. Item sets are stored in a lexicographic
 * order, which is determined by the header information of the set of instances
 * used for generating the set of items. All methods in this class assume that
 * item sets are stored in lexicographic order.
 * The class provides the general methods used for item sets in class - and 

From source file cba.LabeledItemSet.java

/**
 * Class for storing a set of items together with a  class label. Item sets are stored in a lexicographic
 * order, which is determined by the header information of the set of instances
 * used for generating the set of items. All methods in this class assume that
 * item sets are stored in lexicographic order.
 * The class provides the methods used for item sets in class association rule mining.

From source file cba.RuleItem.java

/**
 * Class for storing an (class) association rule.
 * The premise and the consequence are stored each as separate item sets.
 * For every rule their expected predictive accuracy and the time of generation is stored.
 * These two measures allow to introduce a sort order for rules.
 *

From source file clustering.techniques.denistyBased.MotifDataObject.java

public class MotifDataObject implements DataObject, Serializable, RevisionHandler {

    /** for serialization */
    private static final long serialVersionUID = -4408119914898291076L;

    static final int UNCLASSIFIED = -1;

From source file com.jgaap.util.Instance.java

/**
 * Extension of Weka's Instance class to remove a strange function 
 * that repeatedly copies arrays with no possible change in functional or defensive purpose.
 *
 * @author Michael Ryan
 * @version $Revision: 9140 $