Example usage for weka.filters SimpleStreamFilter subclass-usage

List of usage examples for weka.filters SimpleStreamFilter subclass-usage

Introduction

In this page you can find the example usage for weka.filters SimpleStreamFilter subclass-usage.

Usage

From source file BetterRemoveByName.java

/**
 * <!-- globalinfo-start --> Removes attributes based on a regular expression
 * matched against their names.
 * <p/>
 * <!-- globalinfo-end -->
 *

From source file dkpro.similarity.experiments.sts2013.filter.LogFilter.java

public class LogFilter extends SimpleStreamFilter {
    private static final long serialVersionUID = 1L;

    @Override
    protected Instances determineOutputFormat(Instances inst) throws Exception {
        // Filter leaves the instance format unchanged

From source file dkpro.similarity.experiments.sts2013baseline.filter.LogFilter.java

public class LogFilter extends SimpleStreamFilter {
    private static final long serialVersionUID = 1L;

    @Override
    protected Instances determineOutputFormat(Instances inst) throws Exception {
        // Filter leaves the instance format unchanged

From source file etc.aloe.filters.AbstractRegexFilter.java

/**
 * Abstract class representing a Weka filter that detects occurrences of regular
 * expressions in a specific string field.
 *
 * @author Michael Brooks <mjbrooks@uw.edu>
 */

From source file etc.aloe.filters.WordFeaturesExtractor.java

/**
 * A feature extractor that selects plausible unigrams from the training data to
 * use as features.
 *
 * If configured to use bigrams, it can also locate possible useful bigrams in
 * the training data.

From source file meka.filters.unsupervised.attribute.MekaClassAttributes.java

/**
 * Reorders attributes for MEKA to use as class attributes.
 * 
 * @author  fracpete (fracpete at waikato dot ac dot nz)
 * @version $Revision: 66 $
 */

From source file org.dkpro.similarity.experiments.sts2013.filter.LogFilter.java

public class LogFilter extends SimpleStreamFilter {
    private static final long serialVersionUID = 1L;

    @Override
    protected Instances determineOutputFormat(Instances inst) throws Exception {
        // Filter leaves the instance format unchanged

From source file org.dkpro.similarity.experiments.sts2013baseline.filter.LogFilter.java

public class LogFilter extends SimpleStreamFilter {
    private static final long serialVersionUID = 1L;

    @Override
    protected Instances determineOutputFormat(Instances inst) throws Exception {
        // Filter leaves the instance format unchanged

From source file org.dkpro.similarity.ml.filters.LogFilter.java

/**
 * Applies a log-transformation on the input scores.
 */
public class LogFilter extends SimpleStreamFilter {
    private static final long serialVersionUID = 1L;

From source file zhaop.textmining.proj.MultiFilter.java

/**
 * <!-- globalinfo-start --> Applies several filters successively. In case all
 * supplied filters are StreamableFilters, it will act as a streamable one, too.
 * <p/>
 * <!-- globalinfo-end -->
 *