-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsvm.py
More file actions
781 lines (644 loc) · 23.5 KB
/
svm.py
File metadata and controls
781 lines (644 loc) · 23.5 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
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
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
import numpy as np
from scipy.optimize import minimize_scalar
from typing import Tuple
import random
from test_data import TestLinear, TestNonLinear
import matplotlib.pyplot as plt
from numba import njit
import time
class SVM:
def __init__(
self,
C: float = 1.0,
kernel: str = "linear",
lr: float = 0.01,
tol: float = 1e-4,
max_iter: int = 1000,
mode: str = "primal",
sigma: float = 1.0,
s: float = 1.0,
):
"""
Initialize the SVM model.
"""
self.C = C # Regularization parameter
self.kernel = kernel
self.lr = lr # Learning rate
self.tol = tol # Tolerance for stopping criterion
self.max_iter = max_iter # Max iterations
self.mode = mode # primal / dual
self.w = None # Weight vector
self.b = 0 # Bias term
self.alpha = None # Lagrange multipliers
self.support_vectors = None # Support vectors
self.support_y = None # Support vector labels
self.support_alphas = None # Support vector Lagrange multipliers
self.sigma = sigma # Kernel bandwidth
self.s = s # Kernel parameter
# Parameters for the Barzilai-Borwein method
self.tau_min = 1e-5
self.tau_max = 1e5
self._s_prev = None
self._z_prev = None
def fit(self, X: np.ndarray, y: np.ndarray) -> None:
"""
Dispatcher function for training the SVM model.
Args:
X: Feature matrix (M x d).
y: Labels (-1 or +1).
Returns:
None
"""
if self.mode == "primal":
self.w, self.b, residual_norms = self._fit_primal(X, y)
plot_residual_norm(residual_norms)
elif self.mode == "dual":
self.w, self.b, residual_norms = self._fit_dual(X, y)
plot_residual_norm(residual_norms)
else:
raise ValueError("Mode must be 'primal' or 'dual'.")
def _fit_primal(self, X: np.ndarray, y: np.ndarray) -> Tuple[np.ndarray, float]:
"""
Train the SVM using the Quadratic Penalty (QP) method for the primal formulation.
Args:
X: Feature matrix (M x d).
y: Labels (-1 or +1).
Returns:
w, b: Weight vector and bias term value.
"""
_, d = X.shape
w = np.zeros(d) # Initialize weight vector
b = 0.0 # Initialize bias term
residual_norms = [] # List to store residual norms
for _ in range(self.max_iter):
# Compute the margin
margin = y * (np.dot(X, w) + b)
indicator = margin < 1
# Compute the gradient
grad_w = w - self.C * np.sum(
(2 * (1 - margin) * y * X.T * indicator), axis=1
)
grad_b = -self.C * np.sum(2 * (1 - margin) * y * indicator)
# Update weights and bias
w -= self.lr * grad_w
b -= self.lr * grad_b
# Check stopping condition
grad_norm = np.linalg.norm(np.append(grad_w, grad_b))
residual_norms.append(grad_norm)
if grad_norm <= self.tol:
break # Convergence reached
self.w = w
self.b = b
return self.w, self.b, residual_norms
def _fit_dual(self, X: np.ndarray, y: np.ndarray) -> Tuple[np.ndarray, float]:
"""
Train the SVM using Projected Gradient Descent (PGD),
with adaptive step length (advanced Barzilai-Borwein combined with exact line search) for the dual formulation.
Args:
X: Feature matrix (M x d).
y: Labels (-1 or +1).
Returns:
w, b: Weight and bias term vectors (if kernel != linear, only bias term has a value).
"""
M = X.shape[0]
G = self._compute_gram_matrix(X) # Compute the Gram matrix
self.alpha = np.zeros(M) # Initialize Lagrange multipliers
residual_norms = [] # List to store residual norms
iter_count = 0
diff = float("inf") # Parameter to measure convergence
tau = 1.0 # Initial step size
# Reset step history
self._s_prev = None
self._z_prev = None
f_prev = self._dual_objective(G, y, self.alpha)
f_best = f_prev
f_c = f_best
f_ref = float("inf") # Start as infinity
L = 10 # Number of allowed iterations without improvement
non_improving_steps_counter = 0 # Counter for non-improving steps
while diff > self.tol and iter_count < self.max_iter:
# Compute gradient of the dual objective
gradient = y * (G @ (y * self.alpha)) - 1
# Projected gradient step
alpha_after = self._project_onto_feasible_set(
self.alpha - tau * gradient, y, self.C
)
f_before_step = f_prev
f_after_step = self._dual_objective(G, y, alpha_after)
if f_before_step < f_best: # Improved using dual
f_best = f_before_step
f_c = f_before_step
non_improving_steps_counter = 0
else: # Did not improve
f_c = max(f_c, f_before_step)
non_improving_steps_counter += 1
if non_improving_steps_counter == L: # We have not improved for L steps
f_ref = f_c
f_c = f_before_step
non_improving_steps_counter = 0
if (
f_after_step > f_ref or iter_count == 0
): # Result is worse than the reference or first iteration
print(f"Iteration: {iter_count}, Line search triggered")
# Perform exact line search in direction d = alpha_new - alpha
d = alpha_after - self.alpha
theta = self._exact_line_search(self.alpha, d, G, y)
alpha_after = self._project_onto_feasible_set(
self.alpha + theta * d, y, self.C
)
f_after_step = self._dual_objective(
G, y, alpha_after
) # Recompute after update
# Compute residual norm: ||alpha - projection(alpha - tau * grad)||
projected_alpha = self._project_onto_feasible_set(
self.alpha - tau * gradient, y, self.C
)
residual = np.linalg.norm(self.alpha - projected_alpha)
residual_norms.append(residual)
# Compute difference for convergence check
diff = np.linalg.norm(alpha_after - self.alpha)
# Update step length using the advanced BB method
tau = self._step_length_selection(G, y, self.alpha, alpha_after)
# Update alpha and iteration counter
self.alpha = alpha_after
f_prev = f_after_step
iter_count += 1
print(f"Converged after {iter_count} iterations.")
# Identify support vectors
support_idx = (self.alpha > 1e-5) & (self.alpha < self.C)
self.support_vectors = X[support_idx]
self.support_y = y[support_idx]
self.support_alphas = self.alpha[support_idx]
if self.kernel == "linear":
# Compute the weight vector
self.w = np.sum(
(self.support_alphas[:, None] * self.support_y[:, None])
* self.support_vectors,
axis=0,
)
# Bias term
self.b = np.mean(self.support_y - np.dot(self.support_vectors, self.w))
else: # Non-linear kernel
self.w = None # No fixed weight vector
# Bias term
K_vals = self._kernel_function(
self.support_vectors, self.support_vectors[0]
)
self.b = self.support_y[0] - np.sum(
self.support_alphas * self.support_y * K_vals
)
return self.w, self.b, residual_norms
def _exact_line_search(
self, alpha: np.ndarray, d: float, G: np.ndarray, y: np.ndarray
) -> float:
"""
Perform exact line search in direction d by minimizing f(alpha + theta * d_k), wrt theta.
Args:
alpha: Lagrange parameter
d: line search direction
G: Gram matrix (M x M)
y: Labels (-1 or +1).
Returns:
Minimized theta (res.x).
"""
yd = y * d
ya = y * alpha
def f_theta(theta: float) -> float:
return 0.5 * (ya + theta * yd) @ G @ (ya + theta * yd) - np.sum(
alpha + theta * d
)
res = minimize_scalar(f_theta, bounds=(0, 1), method="bounded") # minimizing
return res.x
def _dual_objective(self, G: np.ndarray, y: np.ndarray, alpha: np.ndarray) -> float:
"""
Compute dual objective value (f(alpha) = 0.5 * inner product(alpha, yGy * alpha) - inner product(1_M, alpha)).
Args:
G: Gram matrix (M x M)
y: Labels (-1 or +1)
alpha: Lagrange parameters
Returns:
Dual objective value.
"""
return _dual_objective(G, y, alpha)
def _step_length_selection(
self,
G: np.ndarray,
y: np.ndarray,
alpha_old: np.ndarray,
alpha_new: np.ndarray,
) -> float:
"""
Barzilai-Borwein step size using current and previous s, z values.
Args:
G: Gram matrix (M x M)
y: Labels (-1 or +1)
alpha_old: old Lagrange parameters
alpha_new: new Lagrange parameters
Returns:
Step size.
"""
if self._s_prev is not None and self._z_prev is not None:
new_s, new_z, tau = _step_length_selection(
self._s_prev,
self._z_prev,
G,
y,
alpha_old,
alpha_new,
self.tau_min,
self.tau_max,
)
self._s_prev = new_s
self._z_prev = new_z
return tau
# Compute s and z
s = alpha_new - alpha_old
z = y * (G @ (y * s)) # Gradient difference approximation
num = np.inner(s, s)
denom = np.inner(s, z)
# Store current s and z for next iteration
self._s_prev = s
self._z_prev = z
# Compute step size
tau = num / (denom + 1e-10)
tau = np.clip(tau, self.tau_min, self.tau_max)
return tau
def _compute_gram_matrix(self, X: np.ndarray) -> np.ndarray:
"""
Compute the Gram matrix for the given data points based on the kernel.
Args:
X: Feature matrix (M x d).
Returns:
Gram matrix.
"""
G = self._kernel_function(
X[:, None, ...], X[None, :, ...]
) # G: (M x M), X: (M x d)
return G
def _alpha_lambda(
self, beta: np.ndarray, y: np.ndarray, lambd: float, C: float
) -> np.ndarray:
"""
Compute alpha(lambda) based on the given formula (alpha(lambda) = min(max(beta + lambda * y, 0), C)).
Args:
beta: Lagrange parameter
y: Labels (-1 or +1)
lambda: Lagrange parameter
C: Upper contstraint for the optimization problem, positive real
Returns:
Solution of the minimization of the partial Lagrangian.
"""
return np.minimum(np.maximum(beta + lambd * y, 0), C)
def _bracketing_phase(
self,
alpha: np.ndarray,
y: np.ndarray,
C: float,
delta: float = 0.01,
lambda_val: float = 0,
) -> Tuple[float, float, float, float, float]:
"""
Perform the bracketing phase for bisection.
Args:
alpha: Lagrange parameter
y: Labels (-1 or +1)
C: Upper contstraint for the optimization problem, positive real
delta: initial estimate
lambda_val: initial value
Returns: values to be used in the secant phase
lambda_val: end value located in a bracket
lambda_min: end value located in a bracket
lambda_max: end value located in a bracket
r_min: minimal value of single nonlinear equation
r_max: maximal value of single nonlinear equation
"""
alpha_projected = self._alpha_lambda(alpha, y, 0, C)
r = np.inner(y, alpha_projected)
# Bracketing phase
if r < 0:
lambda_min = lambda_val
r_min = r
lambda_val += delta
alpha_lambda = self._alpha_lambda(alpha, y, lambda_val, C)
r = np.inner(y, alpha_lambda)
while r < 0:
lambda_min = lambda_val
r_min = r
s = max(r_min / r - 1, 0.1)
delta += delta / s
lambda_val += delta
alpha_lambda = self._alpha_lambda(alpha, y, lambda_val, C)
r = np.inner(y, alpha_lambda)
lambda_max = lambda_val
r_max = r
else:
lambda_max = lambda_val
r_max = r
lambda_val -= delta
alpha_lambda = self._alpha_lambda(alpha, y, lambda_val, C)
r = np.inner(y, alpha_lambda)
while r > 0:
lambda_max = lambda_val
r_max = r
s = max(r_max / r - 1, 0.1)
delta += delta / s
lambda_val -= delta
alpha_lambda = self._alpha_lambda(alpha, y, lambda_val, C)
r = np.inner(y, alpha_lambda)
lambda_min = lambda_val
r_min = r
return lambda_val, lambda_min, lambda_max, r_min, r_max
def _secant_phase(
self,
alpha: np.ndarray,
y: np.ndarray,
C: float,
delta: float,
r_min: float,
r_max: float,
lambda_val: float,
lambda_min: float,
lambda_max: float,
) -> float:
"""
Perform the secant phase for bisection.
Args:
alpha: Lagrange parameter
y: Labels (-1 or +1)
C: Upper contstraint for the optimization problem, positive real
delta: initial estimate
lambda_val: end value located in a bracket
lambda_min: end value located in a bracket
lambda_max: end value located in a bracket
r_min: minimal value of single nonlinear equation (located in a bracket)
r_max: maximal value of single nonlinear equation (located in a bracket)
Returns:
Lagrange parameter lambda.
"""
s = 1 - r_min / (r_max + 1e-8)
delta = delta / s
lambda_val = lambda_max - delta
r = np.inner(y, self._alpha_lambda(alpha, y, lambda_val, C))
while abs(r) > self.tol:
if r > 0:
if s <= 2:
lambda_max = lambda_val
r_max = r
s = 1 - r_min / r_max
delta = (lambda_max - lambda_min) / (s + 1e-10)
lambda_val = lambda_max - delta
else:
s = max(r_max / r - 1, 0.1)
delta = (lambda_max - lambda_val) / (s + 1e-10)
lambda_new = max(
lambda_val - delta, 0.75 * lambda_min + 0.25 * lambda_val
)
lambda_max = lambda_val
r_max = r
lambda_val = lambda_new
s = (lambda_max - lambda_min) / (lambda_max - lambda_val)
else:
if s >= 2:
lambda_min = lambda_val
r_min = r
s = 1 - r_min / (r_max + 1e-8)
delta = (lambda_max - lambda_min) / (s + 1e-10)
lambda_val = lambda_max - delta
else:
s = max(r_min / r - 1, 0.1)
delta = (lambda_val - lambda_min) / (s + 1e-10)
lambda_new = min(
lambda_val + delta, 0.75 * lambda_max + 0.25 * lambda_val
)
lambda_min = lambda_val
r_min = r
lambda_val = lambda_new
s = (lambda_max - lambda_min) / (lambda_max - lambda_val)
r = np.inner(y, self._alpha_lambda(alpha, y, lambda_val, C))
return lambda_val
def _project_onto_feasible_set(
self, alpha: np.ndarray, y: np.ndarray, C: float, delta: float = 0.01
) -> np.ndarray:
"""
Project the alpha vector onto the feasible set using bisection method.
Args:
alpha: Lagrange parameter
y: Labels (-1 or +1)
C: Upper contstraint for the optimization problem, positive real
delta: initial estimate
Returns:
Solution of the minimization of the partial Lagrangian.
"""
# Bracketing phase
lambda_val, lambda_min, lambda_max, r_min, r_max = self._bracketing_phase(
alpha, y, C, delta
)
# Secant phase for more precise lambda selection
lambda_val = self._secant_phase(
alpha, y, C, delta, r_min, r_max, lambda_val, lambda_min, lambda_max
)
return self._alpha_lambda(alpha, y, lambda_val, C)
def predict(self, X: np.ndarray) -> np.ndarray:
"""
Predict class labels using the trained SVM.
Args:
X: Feature matrix (M x d).
Returns:
Values of +/- 1.
"""
return np.sign(self._decision_function(X))
def _decision_function(self, X: np.ndarray) -> np.ndarray:
"""
Compute decision function values for given data points in both Primal and Dual SVM.
Args:
X: Feature matrix (M x d).
Returns:
Decision values, f(X) (M_test x 1)
"""
if self.mode == "primal":
return np.dot(X, self.w) + self.b
elif self.mode == "dual":
sv = self.support_vectors[None, :, :]
Xs = X[:, None, :]
decision_values = (
np.sum(
self.support_alphas
* self.support_y
* self._kernel_function(sv, Xs),
axis=-1,
)
+ self.b
)
return decision_values
else:
raise ValueError("Mode must be 'primal' or 'dual'.")
def _kernel_function(self, x1: np.ndarray, x2: np.ndarray) -> np.ndarray:
"""
Compute the kernel function between vectors x1 and x2.
Args:
x1: support vector
x2: arbitrary element of the support vector, taking the first element for simplicity
Returns:
Computed kernel values.
"""
if self.kernel == "linear":
return np.einsum("...i,...i->...", x1, x2)
elif self.kernel == "gaussian":
return np.exp(-np.linalg.norm(x1 - x2, axis=-1) ** 2 / (2 * self.sigma**2))
elif self.kernel == "laplacian":
return np.exp(-np.linalg.norm(x1 - x2, axis=-1) / self.sigma)
elif self.kernel == "inverse multiquadratic":
return 1 / (self.sigma**2 + np.linalg.norm(x1 - x2, axis=-1) ** 2) ** self.s
else:
raise ValueError("Unsupported kernel function.")
# Compile some functions with Numba for better performance
@njit
def _dual_objective(G: np.ndarray, y: np.ndarray, alpha: np.ndarray) -> float:
"""
Compute dual objective value.
"""
return 0.5 * np.dot(alpha, y * (G @ (y * alpha))) - np.sum(alpha)
@njit
def _step_length_selection(
s_prev: np.ndarray,
z_prev: np.ndarray,
G: np.ndarray,
y: np.ndarray,
alpha_old: np.ndarray,
alpha_new: np.ndarray,
tau_min: float,
tau_max: float,
) -> Tuple[np.ndarray, np.ndarray, float]:
"""
Barzilai-Borwein step size using current and previous s, z values.
"""
# Compute s and z
s = alpha_new - alpha_old
z = y * (G @ (y * s)) # Gradient difference approximation
# Store current s and z for next iteration
num = np.dot(s, s) + np.dot(s_prev, s_prev)
denom = np.dot(s, z) + np.dot(z_prev, z_prev)
tau = num / (denom + 1e-10)
tau = min(max(tau, tau_min), tau_max)
return s, z, tau
def plot_residual_norm(residuals):
"""
Function to plot the residual norm over iterations.
Args:
residuals: List of residual norms.
Returns:
None: Displays the plot.
"""
plt.figure(figsize=(9, 7))
plt.semilogy(residuals, color="#FF5733")
plt.xlabel("# Iteration", fontsize=12)
plt.xticks(fontsize=10)
plt.yticks(fontsize=10)
plt.ylabel("The Residual Norm", fontsize=12)
plt.title("Convergence Plot", fontsize=12)
plt.grid(True, alpha=0.5)
plt.show()
def main(
w: np.ndarray,
b: float,
n_A: int,
n_B: int,
margin: float,
kernel: str,
mode: str,
datagenerator: callable,
seed: int,
lr: float = 0.01,
sigma: float = 1.5,
s: float = 1.5,
max_iter: int = 2500,
n_clusters: int = 2,
cluster_spread: float = 0.4,
plot_extent: float = 8.0,
) -> None:
"""
Training the SVM and predicting the decision boundary.
Args:
w: non-zero normal vector defining a hyperplane
b: real number, offset of the hyperplane
n_A: number of additional samples from class A
n_B: number of additional samples from class B
margin: desired margin for the samples
kernel: function K: R^d x R^d -> R s.t. w(x) = inner product(w, K(x,))
mode: primal or dual.
Returns:
None: Plot of the dataset and descision boundary.
"""
if datagenerator == TestLinear:
listA, listB = datagenerator(w, b, n_A, n_B, margin, seed=seed)
if datagenerator == TestNonLinear:
listA, listB = datagenerator(
n_A,
n_B,
margin,
seed,
n_clusters=n_clusters,
cluster_spread=cluster_spread,
plot_extent=plot_extent,
)
# Convert lists to numpy arrays
X_A = np.array(listA)
X_B = np.array(listB)
X = np.vstack((X_A, X_B))
y = np.hstack((np.ones(n_A), -np.ones(n_B))) # Class A = +1, Class B = -1
# Train the SVM
svm = SVM(
C=1.0, kernel=kernel, lr=lr, mode=mode, sigma=sigma, s=s, max_iter=max_iter
)
# Timing the fit
start_time = time.time()
svm.fit(X, y)
end_time = time.time()
print(f"Training time: {end_time - start_time:.4f} seconds")
# Predict decision boundary
xx, yy = np.meshgrid(np.linspace(-11, 11, 50), np.linspace(-11, 11, 50))
Z = np.c_[xx.ravel(), yy.ravel()]
decision_values = svm._decision_function(Z).reshape(xx.shape)
# Plot the results
plt.figure(figsize=(9, 7))
plt.contourf(
xx,
yy,
decision_values,
alpha=0.5,
levels=[-100, 0, 100],
colors=["#AFCBFF", "#F19C8A"],
)
plt.scatter(
X_A[:, 0],
X_A[:, 1],
color="#FF5733",
label="Class A",
edgecolors="black",
linewidth=0.5,
alpha=0.85,
)
plt.scatter(
X_B[:, 0],
X_B[:, 1],
color="#1F77B4",
label="Class B",
edgecolors="black",
linewidth=0.5,
alpha=0.85,
)
plt.legend(frameon=True, fontsize=12, loc="upper right")
plt.title("SVM Decision Boundary on Generated Data")
plt.show()
if __name__ == "__main__":
main(
np.array([1.0, 1.0]),
1.0,
2000,
2000,
0.5,
"gaussian",
"dual",
TestNonLinear,
random.randint(0, 1000),
)