Examples of NBTreeClassifierTree


Examples of weka.classifiers.trees.j48.NBTreeClassifierTree

   * Returns default capabilities of the classifier.
   *
   * @return      the capabilities of this classifier
   */
  public Capabilities getCapabilities() {
    return new NBTreeClassifierTree(null).getCapabilities();
  }
View Full Code Here

Examples of weka.classifiers.trees.j48.NBTreeClassifierTree

  public void buildClassifier(Instances instances) throws Exception {
   
    NBTreeModelSelection modSelection =
      new NBTreeModelSelection(m_minNumObj, instances);

    m_root = new NBTreeClassifierTree(modSelection);
    m_root.buildClassifier(instances);
  }
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.