SHOGUN
6.0.0
src
shogun
multiclass
ecoc
ECOCForestEncoder.cpp
Go to the documentation of this file.
1
/*
2
* This program is free software; you can redistribute it and/or modify
3
* it under the terms of the GNU General Public License as published by
4
* the Free Software Foundation; either version 3 of the License, or
5
* (at your option) any later version.
6
*
7
* Written (W) 2012 Chiyuan Zhang
8
* Copyright (C) 2012 Chiyuan Zhang
9
*/
10
11
#include <
shogun/multiclass/ecoc/ECOCForestEncoder.h
>
12
13
using namespace
shogun
;
14
15
CECOCForestEncoder::CECOCForestEncoder
()
16
{
17
m_num_trees = 3;
18
SG_ADD
(&m_num_trees,
"num_trees"
,
"number of trees"
,
MS_NOT_AVAILABLE
);
19
}
20
21
void
CECOCForestEncoder::set_num_trees
(int32_t num_trees)
22
{
23
if
(num_trees < 1)
24
SG_ERROR
(
"number of trees (%d) should be >= 1"
, num_trees)
25
m_num_trees = num_trees;
26
}
shogun::CECOCForestEncoder::CECOCForestEncoder
CECOCForestEncoder()
Definition:
ECOCForestEncoder.cpp:15
SG_ERROR
#define SG_ERROR(...)
Definition:
SGIO.h:128
shogun::MS_NOT_AVAILABLE
Definition:
SGObject.h:102
shogun::CECOCForestEncoder::set_num_trees
void set_num_trees(int32_t num_trees)
Definition:
ECOCForestEncoder.cpp:21
ECOCForestEncoder.h
shogun
all of classes and functions are contained in the shogun namespace
Definition:
class_list.h:18
SG_ADD
#define SG_ADD(...)
Definition:
SGObject.h:94
SHOGUN
Machine Learning Toolbox - Documentation