Package weka.classifiers.bayes.net.search.global

Examples of weka.classifiers.bayes.net.search.global.K2


        Classifier bn = new BayesNet();
        Classifier bnCopy;

        Evaluation ev;
        K2 xK2 = new K2();
        xK2.setInitAsNaiveBayes(true);
        xK2.setMaxNrOfParents(1);
        ((BayesNet) bn).setSearchAlgorithm(xK2);

        m_ROCs = new double[data.numAttributes()];

        for (int att_counter = 0; att_counter < data.numAttributes(); att_counter++){
View Full Code Here

TOP

Related Classes of weka.classifiers.bayes.net.search.global.K2

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.