Package id3

Examples of id3.ID3Inducer.train()


  @Override
  public Categorizer getCategorizer(InstanceList instances) {
    ID3Inducer id3 = new ID3Inducer("ID3PerfClassSelector");
    id3.assign_data(instances);
    id3.train();
    id3.display_struct();
    return id3.get_categorizer();
  }
}
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.