Package weka.classifiers

Examples of weka.classifiers.CheckClassifier


   * configures the CheckClassifier instance used throughout the tests
   *
   * @return  the fully configured CheckClassifier instance used for testing
   */
  protected CheckClassifier getTester() {
    CheckClassifier   result;
   
    result = super.getTester();
    result.setNumInstances(40);
   
    return result;
  }
View Full Code Here


   * configures the CheckClassifier instance used throughout the tests
   *
   * @return  the fully configured CheckClassifier instance used for testing
   */
  protected CheckClassifier getTester() {
    CheckClassifier   result;
   
    result = super.getTester();
    result.setNumInstances(60);
   
    return result;
  }
View Full Code Here

   * configures the CheckClassifier instance used throughout the tests
   *
   * @return  the fully configured CheckClassifier instance used for testing
   */
  protected CheckClassifier getTester() {
    CheckClassifier  result;
   
    result = super.getTester();
    result.setNumNominal(NUM_COMPONENTS * 2);
    result.setNumNumeric(NUM_COMPONENTS * 2);
    result.setNumString(NUM_COMPONENTS * 2);
    result.setNumDate(NUM_COMPONENTS * 2);
    result.setNumRelational(NUM_COMPONENTS * 2);
   
    return result;
  }
View Full Code Here

   * configures the CheckClassifier instance used throughout the tests
   *
   * @return  the fully configured CheckClassifier instance used for testing
   */
  protected CheckClassifier getTester() {
    CheckClassifier  result;
   
    result = super.getTester();
    result.setNumNumeric(7);
    result.setNumInstances(100);
   
    return result;
  }
View Full Code Here

TOP

Related Classes of weka.classifiers.CheckClassifier

Copyright © 2018 www.massapicom. 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.