forked from SleepyBag/Statistical-Learning-Methods
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SVM.py
199 lines (177 loc) · 7.32 KB
/
SVM.py
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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
from matplotlib import pyplot as plt
import numpy as np
import sys
import os
from pathlib import Path
from rich.console import Console
from rich.table import Table
from functools import partial
sys.path.append(str(Path(os.path.abspath(__file__)).parent.parent))
from utils import wbline
class SVM:
def __init__(self, C=1e9, epsilon=1e-6, lr=1e-4, max_steps=1000, verbose=True, kernel=np.dot):
"""
kernel: kernel function, of which
the input is two vectors a, b
the output is a scalar value
"""
self.lr = lr
self.max_steps = max_steps
self.verbose = verbose
self.C = C
self.epsilon = epsilon
self.kernel = kernel
def _smo_objective(self, i, j):
"""
The objective function of one step of SMO
given the choosed alpha i and alpha j
"""
alpha, Y, K = self.alpha, self.Y, self.K
return (alpha[i] * Y[i] * alpha * K[i:] * Y).sum() \
+ (alpha[j] * Y[j] * alpha * K[j:] * Y).sum() \
- .5 * alpha[i] ** 2 * K[i, i] \
- .5 * alpha[j] ** 2 * K[j, j] \
- alpha[i] * alpha[j] * Y[i] * Y[j] * K[i, j]\
- alpha[i] - alpha[j]
def _smo_step(self, step_cnt):
if self.verbose:
print(f'SMO step {step_cnt} start...')
alpha = self.alpha
K = self.K
data_size = len(alpha)
# the prediction of this step
pred = (self.alpha * Y * self.K).sum(axis=-1) + self.b
# the score of pred
score = Y * pred
# discrepency between pred and label
error = pred - Y
updated = False
# find the first variable alpha_i
# which violate KKT constraint
# first try to find fake support vectors
# of which 0 < alpha_i < C but score_i isn't 1
i_cands = [i for i in range(data_size) if
0 < alpha[i] < self.C and abs(score[i] - 1) > self.epsilon or
alpha[i] == 0 and score[i] < 1 or
alpha[i] == self.C and score[i] > 1]
for i in i_cands:
# find the second variable
# which makes alpha_i change most
relative_error = np.abs(error - error[i])
j_cands = sorted(list(range(data_size)), key=relative_error.__getitem__)
for j in j_cands:
if j == i:
continue
smo_objective_before = self._smo_objective(i, j)
# upper bound and lower bound of alpha_j
L = max(0, alpha[j] - alpha[i] if Y[i] != Y[j] else alpha[i] + alpha[j] - self.C)
H = min(self.C, self.C + alpha[j] - alpha[i] if Y[i] != Y[j] else alpha[i] + alpha[j])
if self.verbose:
print('SMO chooses: ', i, j)
print('alpha[i] and alpha[j] are', alpha[i], alpha[j])
print('Step begin, current object of dual problem:', smo_objective_before)
alpha_j_old = alpha[j]
eta = K[i, i] + K[j, j] - 2 * K[i, j] + self.epsilon
# update alpha_j
alpha[j] += Y[j] * (error[i] - error[j]) / eta
# clip
alpha[j] = min(alpha[j], H)
alpha[j] = max(alpha[j], L)
# update alpha_i
alpha[i] += Y[i] * Y[j] * (alpha_j_old - alpha[j])
# update b
self.b = Y[i] - (alpha * Y * K[i]).sum()
if 0 < alpha[j] < self.C:
self.b = (Y[j] - (alpha * Y * K[j]).sum() + self.b) / 2
smo_objective_after = self._smo_objective(i, j)
if self.verbose:
print('Step end, current object of dual problem:', smo_objective_after)
print('alpha[i] and alpha[j] are', alpha[i], alpha[j])
if smo_objective_before - smo_objective_after > self.epsilon:
updated = True
break
if updated:
break
if self.verbose:
print('SMO step end...')
print()
return len(i_cands) > 0
def fit(self, X, Y):
"""
optimize SVM with SMO
X: of shape [data-size, feature-size]
Y: of shape [data-size]
"""
self.X, self.Y = X, Y
data_size = len(X)
self.alpha = np.zeros(data_size)
self.b = np.random.rand()
self.K = np.array([[self.kernel(x1, x2) for x1 in X] for x2 in X])
print(self.K)
# optimize
step_cnt = 0
while self._smo_step(step_cnt) and step_cnt < self.max_steps:
step_cnt += 1
pass
# optimized, get w and b
support_vector_ind = 0 < self.alpha
self._support_vectors = X[support_vector_ind]
self._support_Y = Y[support_vector_ind]
self._support_alpha = self.alpha[support_vector_ind]
if self.verbose:
print("Done!")
print('Alphas are as follows:')
print(self.alpha)
print(support_vector_ind)
print('Support vectors are as follows:')
print(self._support_vectors)
# for demonstration
self.w = ((self.alpha * Y)[:, None] * X).sum(axis=0)
def _predict(self, x):
return (self._support_Y * self._support_alpha * \
np.apply_along_axis(partial(self.kernel, x), -1, self._support_vectors)).sum()
def predict(self, X):
score = np.apply_along_axis(self._predict, -1, X)
# score = (self.w * X).sum(axis=-1) + self.b
pred = (score >= 0).astype(int) * 2 - 1
return pred
if __name__ == "__main__":
def demonstrate(X, Y, desc, draw=True, **args):
console = Console(markup=False)
svm = SVM(verbose=True, **args)
svm.fit(X, Y)
# plot
if draw:
plt.scatter(X[:, 0], X[:, 1], c=Y)
wbline(svm.w, svm.b)
plt.title(desc)
plt.show()
# show in table
pred = svm.predict(X)
table = Table('x', 'y', 'pred')
for x, y, y_hat in zip(X, Y, pred):
table.add_row(*map(str, [x, y, y_hat]))
console.print(table)
# -------------------------- Example 1 ----------------------------------------
print("Example 1:")
X = np.array([[0, 0], [0, 1], [1, 0], [1, 1]])
Y = np.array([1, 1, -1, -1])
demonstrate(X, Y, "Example 1")
# -------------------------- Example 2 ----------------------------------------
print("Example 2:")
X = np.concatenate((np.random.rand(5, 2), np.random.rand(5, 2) + np.array([1, 1])), axis=0)
Y = np.array([1, 1, 1, 1, 1, -1, -1, -1, -1, -1])
print(X, Y)
demonstrate(X, Y, "Example 2: randomly generated data")
# ---------------------- Example 3 --------------------------------------------
print("Example 3:")
X = np.array([[0, 0], [1, 1], [1, 0], [0, 1]])
Y = np.array([1, 1, -1, -1])
demonstrate(X, Y, "Example 3: SVM with dot kernel cannot sovle XOR problem", C=1)
# ---------------------- Example 4 --------------------------------------------
def gaussian_kernel(x, y):
return np.exp(-((x - y) ** 2).sum())
print("Example 4:")
X = np.array([[0, 0], [1, 1], [1, 0], [0, 1]])
Y = np.array([1, 1, -1, -1])
demonstrate(X, Y, "Example 4: SVM with dot kernel cannot sovle XOR problem", draw=False, kernel=gaussian_kernel)