Package weka.classifiers.trees.ft

Examples of weka.classifiers.trees.ft.FTLeavesNode


      m_tree = new FTNode( m_errorOnProbabilities, m_numBoostingIterations, m_minNumInstances,
                           m_weightTrimBeta, m_useAIC);
                      
    //create a FTLeaves  tree root
    if (m_modelType==1){
      m_tree = new FTLeavesNode(m_errorOnProbabilities, m_numBoostingIterations, m_minNumInstances,
                                m_weightTrimBeta, m_useAIC);
    }
    //create a FTInner  tree root
    if (m_modelType==2)
      m_tree = new FTInnerNode(m_errorOnProbabilities, m_numBoostingIterations, m_minNumInstances,
View Full Code Here


      m_tree = new FTNode( m_errorOnProbabilities, m_numBoostingIterations, m_minNumInstances,
                           m_weightTrimBeta, m_useAIC);
                      
    //create a FTLeaves  tree root
    if (m_modelType==1){
      m_tree = new FTLeavesNode(m_errorOnProbabilities, m_numBoostingIterations, m_minNumInstances,
                                m_weightTrimBeta, m_useAIC);
    }
    //create a FTInner  tree root
    if (m_modelType==2)
      m_tree = new FTInnerNode(m_errorOnProbabilities, m_numBoostingIterations, m_minNumInstances,
View Full Code Here

TOP

Related Classes of weka.classifiers.trees.ft.FTLeavesNode

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.