Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
The Waikato Environment for Knowledge Analysis (WEKA), a machine
learning workbench. This version represents the developer version, the
"bleeding edge" of development, you could say. New functionality gets added
to this version.
/*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*/
/*
* AttributeSelectedClassifier.java
* Copyright (C) 2000-2012 University of Waikato, Hamilton, New Zealand
*
*/
package weka.classifiers.meta;
import java.util.Collections;
import java.util.Enumeration;
import java.util.Random;
import java.util.Vector;
import weka.attributeSelection.ASEvaluation;
import weka.attributeSelection.ASSearch;
import weka.attributeSelection.AttributeSelection;
import weka.classifiers.SingleClassifierEnhancer;
import weka.core.AdditionalMeasureProducer;
import weka.core.Capabilities;
import weka.core.Capabilities.Capability;
import weka.core.Drawable;
import weka.core.Instance;
import weka.core.Instances;
import weka.core.Option;
import weka.core.OptionHandler;
import weka.core.RevisionUtils;
import weka.core.Utils;
import weka.core.WeightedInstancesHandler;
/**
* Dimensionality of training and test data is reduced by attribute selection before being passed on to a classifier.
*
*
* Valid options are:
*
*
-E <attribute evaluator specification>
* Full class name of attribute evaluator, followed
* by its options.
* eg: "weka.attributeSelection.CfsSubsetEval -L"
* (default weka.attributeSelection.CfsSubsetEval)
*
*
-S <search method specification>
* Full class name of search method, followed
* by its options.
* eg: "weka.attributeSelection.BestFirst -D 1"
* (default weka.attributeSelection.BestFirst)
*
*
-D
* If set, classifier is run in debug mode and
* may output additional info to the console
*
*
-W
* Full name of base classifier.
* (default: weka.classifiers.trees.J48)
*
*
* Options specific to classifier weka.classifiers.trees.J48:
*
*
*
-U
* Use unpruned tree.
*
*
-C <pruning confidence>
* Set confidence threshold for pruning.
* (default 0.25)
*
*
-M <minimum number of instances>
* Set minimum number of instances per leaf.
* (default 2)
*
*
-R
* Use reduced error pruning.
*
*
-N <number of folds>
* Set number of folds for reduced error
* pruning. One fold is used as pruning set.
* (default 3)
*
*
-B
* Use binary splits only.
*
*
-S
* Don't perform subtree raising.
*
*
-L
* Do not clean up after the tree has been built.
*
*
-A
* Laplace smoothing for predicted probabilities.
*
*
-Q <seed>
* Seed for random data shuffling (default 1).
*
*
* @author Mark Hall ([email protected])
* @version $Revision: 10141 $
*/
public class AttributeSelectedClassifier
extends SingleClassifierEnhancer
implements OptionHandler, Drawable, AdditionalMeasureProducer,
WeightedInstancesHandler {
/** for serialization */
static final long serialVersionUID = -1151805453487947577L;
/** The attribute selection object */
protected AttributeSelection m_AttributeSelection = null;
/** The attribute evaluator to use */
protected ASEvaluation m_Evaluator =
new weka.attributeSelection.CfsSubsetEval();
/** The search method to use */
protected ASSearch m_Search = new weka.attributeSelection.BestFirst();
/** The header of the dimensionally reduced data */
protected Instances m_ReducedHeader;
/** The number of class vals in the training data (1 if class is numeric) */
protected int m_numClasses;
/** The number of attributes selected by the attribute selection phase */
protected double m_numAttributesSelected;
/** The time taken to select attributes in milliseconds */
protected double m_selectionTime;
/** The time taken to select attributes AND build the classifier */
protected double m_totalTime;
/**
* String describing default classifier.
*
* @return the default classifier classname
*/
protected String defaultClassifierString() {
return "weka.classifiers.trees.J48";
}
/**
* Default constructor.
*/
public AttributeSelectedClassifier() {
m_Classifier = new weka.classifiers.trees.J48();
}
/**
* Returns a string describing this search method
* @return a description of the search method suitable for
* displaying in the explorer/experimenter gui
*/
public String globalInfo() {
return "Dimensionality of training and test data is reduced by "
+"attribute selection before being passed on to a classifier.";
}
/**
* Returns an enumeration describing the available options.
*
* @return an enumeration of all the available options.
*/
public Enumeration