Example usage for weka.core Capabilities enableAll

List of usage examples for weka.core Capabilities enableAll

Introduction

In this page you can find the example usage for weka.core Capabilities enableAll.

Prototype

public void enableAll() 

Source Link

Document

enables all attribute and class types (including dependencies)

Usage

From source file:j48.ClassifierTree.java

License:Open Source License

/**
 * Returns default capabilities of the classifier tree.
 *
 * @return      the capabilities of this classifier tree
 *///from ww  w  .j a  va2s .com
public Capabilities getCapabilities() {
    Capabilities result = new Capabilities(this);
    result.enableAll();

    return result;
}