Package weka.classifiers.trees.ft

Examples of weka.classifiers.trees.ft.FTNode


    int minNumInstances = 2
   
   
    //create a FT  tree root
    if (m_modelType==0)
      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,
View Full Code Here


    int minNumInstances = 2
   
   
    //create a FT  tree root
    if (m_modelType==0)
      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,
View Full Code Here

TOP

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

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.