-
-
Notifications
You must be signed in to change notification settings - Fork 1k
Expand file tree
/
Copy pathLDA.cpp
More file actions
155 lines (129 loc) · 4.26 KB
/
LDA.cpp
File metadata and controls
155 lines (129 loc) · 4.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
/*
* This software is distributed under BSD 3-clause license (see LICENSE file).
*
* Authors: Soeren Sonnenburg, Heiko Strathmann, Sergey Lisitsyn,
* Michele Mazzoni, Bjoern Esser, Fernando Iglesias, Abhijeet Kislay,
* Viktor Gal, Evan Shelhamer, Giovanni De Toni,
* Christopher Goldsworthy
*/
#include <shogun/lib/config.h>
#include <shogun/classifier/LDA.h>
#include <shogun/mathematics/eigen3.h>
#include <shogun/mathematics/linalg/LinalgNamespace.h>
#include <shogun/preprocessor/FisherLDA.h>
#include <shogun/solver/LDACanVarSolver.h>
#include <shogun/solver/LDASolver.h>
#include <vector>
using namespace Eigen;
using namespace shogun;
CLDA::CLDA(float64_t gamma, ELDAMethod method, bool bdc_svd)
: CDenseRealDispatch<CLDA, CLinearMachine>()
{
init();
m_method=method;
m_gamma=gamma;
m_bdc_svd = bdc_svd;
}
CLDA::CLDA(
float64_t gamma, CDenseFeatures<float64_t>* traindat, CLabels* trainlab,
ELDAMethod method, bool bdc_svd)
: CDenseRealDispatch<CLDA, CLinearMachine>(), m_gamma(gamma)
{
init();
set_features(traindat);
set_labels(trainlab);
m_method=method;
m_gamma=gamma;
m_bdc_svd = bdc_svd;
}
void CLDA::init()
{
m_method=AUTO_LDA;
m_gamma=0;
m_bdc_svd = true;
SG_ADD(
(machine_int_t*)&m_method, "m_method",
"Method used for LDA calculation", MS_NOT_AVAILABLE);
SG_ADD(&m_gamma, "m_gamma", "Regularization parameter", MS_AVAILABLE);
SG_ADD(&m_bdc_svd, "m_bdc_svd", "Use BDC-SVD algorithm", MS_NOT_AVAILABLE);
}
CLDA::~CLDA()
{
}
template <typename ST, typename U>
bool CLDA::train_machine_templated(CDenseFeatures<ST>* data)
{
index_t num_feat = data->get_num_features();
index_t num_vec = data->get_num_vectors();
;
bool lda_more_efficient = (m_method == AUTO_LDA && num_vec <= num_feat);
if (m_method == SVD_LDA || lda_more_efficient)
return solver_svd<ST>(data);
else
return solver_classic<ST>(data);
}
template <typename ST>
bool CLDA::solver_svd(CDenseFeatures<ST>* data)
{
auto labels = multiclass_labels(m_labels);
REQUIRE(
labels->get_num_classes() == 2, "Number of classes (%d) must be 2\n",
labels->get_num_classes())
// keep just one dimension to do binary classification
const index_t projection_dim = 1;
auto solver = std::unique_ptr<LDACanVarSolver<ST>>(
new LDACanVarSolver<ST>(
data, labels, projection_dim, m_gamma, m_bdc_svd));
SGVector<ST> w_st(solver->get_eigenvectors());
auto class_mean = solver->get_class_mean();
ST m_neg = linalg::dot(w_st, class_mean[0]);
ST m_pos = linalg::dot(w_st, class_mean[1]);
// change the sign of w if needed to get the correct labels
float64_t sign = (m_pos > m_neg) ? 1 : -1;
SGVector<float64_t> w(data->get_num_features());
// copy w_st into w
for (index_t i = 0; i < w.size(); ++i)
w[i] = sign * w_st[i];
set_w(w);
set_bias(-0.5 * sign * (m_neg + m_pos));
return true;
}
template <typename ST>
bool CLDA::solver_classic(CDenseFeatures<ST>* data)
{
auto labels = multiclass_labels(m_labels);
REQUIRE(
labels->get_num_classes() == 2, "Number of classes (%d) must be 2\n",
labels->get_num_classes())
index_t num_feat = data->get_num_features();
auto solver = std::unique_ptr<LDASolver<ST>>(
new LDASolver<ST>(data, labels, m_gamma));
auto class_mean = solver->get_class_mean();
auto class_count = solver->get_class_count();
SGMatrix<ST> scatter_matrix = solver->get_within_cov();
// the usual way
// we need to find a Basic Linear Solution of A.x=b for 'x'.
// Instead of crudely Inverting A, we go for solve() using Decompositions.
// where:
// MatrixXd A=scatter;
// VectorXd b=mean_pos-mean_neg;
// VectorXd x=w;
auto decomposition = linalg::cholesky_factor(scatter_matrix);
SGVector<ST> w_st = linalg::cholesky_solver(
decomposition,
linalg::add(class_mean[1], class_mean[0], (ST)1, (ST)-1));
// get the weights w_neg(for -ve class) and w_pos(for +ve class)
auto w_neg = linalg::cholesky_solver(decomposition, class_mean[0]);
auto w_pos = linalg::cholesky_solver(decomposition, class_mean[1]);
SGVector<float64_t> w(num_feat);
// copy w_st into w
for (index_t i = 0; i < w.size(); ++i)
w[i] = (float64_t)w_st[i];
set_w(w);
// get the bias.
set_bias(
(float64_t)(
0.5 * (linalg::dot(w_neg, class_mean[0]) -
linalg::dot(w_pos, class_mean[1]))));
return true;
}