⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 adtreelearner.cpp

📁 MultiBoost 是c++实现的多类adaboost酸法。与传统的adaboost算法主要解决二类分类问题不同
💻 CPP
字号:
/*
* This file is part of MultiBoost, a multi-class 
* AdaBoost learner/classifier
*
* Copyright (C) 2005-2006 Norman Casagrande
* For informations write to nova77@gmail.com
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
*
*/

#include "ADTreeLearner.h"

#include "IO/Serialization.h" // used to serialize the data
#include "IO/ADTreeData.h"

namespace MultiBoost {

REGISTER_LEARNER(ADTreeLearner)

// ------------------------------------------------------------------------------

void ADTreeLearner::declareArguments(nor_utils::Args& args)
{
   // Call the super-class method
   SingleStumpLearner::declareArguments(args);
}

// ------------------------------------------------------------------------------

void ADTreeLearner::initOptions(nor_utils::Args& args)
{
   // Call the super-class method
   SingleStumpLearner::initOptions(args);}

// ------------------------------------------------------------------------------

void ADTreeLearner::run(InputData* pData)
{
   // Perform the learning here! But don't forget to update _alpha too, which is declared
   // in BaseLearner!
}

// -----------------------------------------------------------------------

double ADTreeLearner::classify(InputData* pData, int idx, int classIdx)
{
   // Guess what? You have to classify here!
   // Generally you return +1 if you think that the example if index idx
   // should belong to classIdx, and -1 otherwise. Other classifiers
   // returns a range between the two.

   return 0;
}

// -----------------------------------------------------------------------

void ADTreeLearner::save(ofstream& outputStream, int numTabs)
{
   // Call the super-class method
   BaseLearner::save(outputStream, numTabs);

}

// -----------------------------------------------------------------------

void ADTreeLearner::load(nor_utils::StreamTokenizer& st)
{
   // Call the super-class method
   BaseLearner::load(st);
}

// -----------------------------------------------------------------------

} // end of namespace MultiBoost

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -