SHOGUN
4.1.0
Main Page
Related Pages
Modules
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Modules
Pages
src
shogun
multiclass
ecoc
ECOCDecoder.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/mathematics/Math.h
>
12
#include <
shogun/multiclass/ecoc/ECOCDecoder.h
>
13
14
using namespace
shogun
;
15
16
SGVector<float64_t>
CECOCDecoder::binarize
(
const
SGVector<float64_t>
query)
17
{
18
SGVector<float64_t>
bquery(query.
vlen
);
19
for
(int32_t i=0; i < query.
vlen
; ++i)
20
{
21
if
(query.
vector
[i] >= 0)
22
bquery.
vector
[i] = +1.0;
23
else
24
bquery.
vector
[i] = -1.0;
25
}
26
27
return
bquery;
28
}
29
Math.h
ECOCDecoder.h
shogun::SGVector::vlen
index_t vlen
Definition:
SGVector.h:494
shogun::SGVector::vector
T * vector
Definition:
SGVector.h:492
shogun::SGVector< float64_t >
shogun::CECOCDecoder::binarize
SGVector< float64_t > binarize(const SGVector< float64_t > query)
Definition:
ECOCDecoder.cpp:16
shogun
all of classes and functions are contained in the shogun namespace
Definition:
class_list.h:18
SHOGUN
Machine Learning Toolbox - Documentation