Package weka.classifiers

Examples of weka.classifiers.Evaluation.evaluateModel()


      // Build the classifier
      filteredClassifier = clsCopy;
      filteredClassifier.buildClassifier(train);
     
      Evaluation eval = new Evaluation(train);
          eval.evaluateModel(filteredClassifier, test);
         
          System.out.println(filteredClassifier.toString());
    }
    catch (Exception e) {
      throw new SimilarityException(e);
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.