SHOGUN
6.0.0
src
shogun
multiclass
ecoc
ECOCForestEncoder.h
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
#ifndef ECOCFORESTENCODER_H__
12
#define ECOCFORESTENCODER_H__
13
14
#include <shogun/lib/config.h>
15
16
#include <
shogun/multiclass/ecoc/ECOCDiscriminantEncoder.h
>
17
18
namespace
shogun
19
{
20
31
class
CECOCForestEncoder
:
public
CECOCDiscriminantEncoder
32
{
33
public
:
35
CECOCForestEncoder
();
36
38
virtual
~CECOCForestEncoder
() {}
39
41
virtual
const
char
*
get_name
()
const
{
return
"ECOCForestEncoder"
; }
42
44
int32_t
get_num_trees
()
const
{
return
m_num_trees; }
45
47
void
set_num_trees
(int32_t num_trees);
48
};
49
50
}
/* shogun */
51
52
#endif
/* end of include guard: ECOCFORESTENCODER_H__ */
53
shogun::CECOCForestEncoder::CECOCForestEncoder
CECOCForestEncoder()
Definition:
ECOCForestEncoder.cpp:15
shogun::CECOCForestEncoder::get_num_trees
int32_t get_num_trees() const
Definition:
ECOCForestEncoder.h:44
shogun::CECOCForestEncoder::~CECOCForestEncoder
virtual ~CECOCForestEncoder()
Definition:
ECOCForestEncoder.h:38
shogun::CECOCForestEncoder::set_num_trees
void set_num_trees(int32_t num_trees)
Definition:
ECOCForestEncoder.cpp:21
shogun::CECOCForestEncoder
Definition:
ECOCForestEncoder.h:31
ECOCDiscriminantEncoder.h
shogun::CECOCForestEncoder::get_name
virtual const char * get_name() const
Definition:
ECOCForestEncoder.h:41
shogun
all of classes and functions are contained in the shogun namespace
Definition:
class_list.h:18
shogun::CECOCDiscriminantEncoder
Definition:
ECOCDiscriminantEncoder.h:35
SHOGUN
Machine Learning Toolbox - Documentation