-
Notifications
You must be signed in to change notification settings - Fork 0
/
LS.py
33 lines (30 loc) · 1.1 KB
/
LS.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
import numpy as np
# Least Square Sum classifier
class Least_Square_Classifier:
# Training function
###############################################################################
# INPUT
# X: N x d array with training data
# Y: N x 1 array with training data labels
###############################################################################
def train(self, X, y):
# Add column with ones to X for bias
X = np.c_[X, np.ones(len(X))]
# Get pseudoinverse of X
PinvX = np.linalg.pinv(X)
# Find optimal weight vector by solving equation w = PinvX*y
self.w = np.dot(PinvX, y)
# Classify function
###############################################################################
# INPUT
# X: N x d array with test data
###############################################################################
# OUTPUT
# Y: N x 1 array with predicted data labels
###############################################################################
def classify(self, X):
# Add column with ones to X for bias
X = np.c_[X, np.ones(len(X))]
# Get predicted labels
Y = np.sign(np.dot(X, self.w))
return Y