Package org.goai.classification.eval

Examples of org.goai.classification.eval.ClassifierEvaluationResult


        DataSet evaluationDataSet =  DataSet.createFromFile(IrisNeurophClassifierSample.class.getResource("iris_data_normalised.txt").getPath(), 4, 3, ",");
       
        ClassificationProblem<double[], String> classificationProblem = createClassificationProblem(evaluationDataSet);
       
        ClassifierEvaluator<double[], String> evaluator = new ClassifierEvaluator<>();
        ClassifierEvaluationResult evaluationResults =  evaluator.evaluate(goaiClassifier, classificationProblem);       
       
        System.out.println(evaluationResults);
       
    }
View Full Code Here

TOP

Related Classes of org.goai.classification.eval.ClassifierEvaluationResult

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.