Examples of capabilities()


Examples of weka.core.Capabilities.capabilities()

    result = getCapabilities();

    // no class? -> remove all class capabilites apart from NO_CLASS
    if (data.classIndex() == -1) {
      classes = result.getClassCapabilities();
      iter    = classes.capabilities();
      while (iter.hasNext()) {
  cap = (Capability) iter.next();
  if (cap != Capability.NO_CLASS) {
    result.disable(cap);
    result.disableDependency(cap);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.