List of usage examples for weka.core Capabilities enableAll
public void enableAll()
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; }