Last active
November 13, 2017 01:07
-
-
Save giuseppebonaccorso/d700d7bd48b1865990d2f226759686b1 to your computer and use it in GitHub Desktop.
Passive Aggressive Classification
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import numpy as np | |
from sklearn.datasets import make_classification | |
from sklearn.linear_model import LogisticRegression | |
from sklearn.model_selection import train_test_split | |
# Set random seed (for reproducibility) | |
np.random.seed(1000) | |
nb_samples = 5000 | |
nb_features = 4 | |
# Create the dataset | |
X, Y = make_classification(n_samples=nb_samples, | |
n_features=nb_features, | |
n_informative=nb_features - 2, | |
n_redundant=0, | |
n_repeated=0, | |
n_classes=2, | |
n_clusters_per_class=2) | |
# Split the dataset | |
X_train, X_test, Y_train, Y_test = train_test_split(X, Y, test_size=0.35, random_state=1000) | |
# Perform a logistic regression | |
lr = LogisticRegression() | |
lr.fit(X_train, Y_train) | |
print('Logistic Regression score: {}'.format(lr.score(X_test, Y_test))) | |
# Set the y=0 labels to -1 | |
Y_train[Y_train==0] = -1 | |
Y_test[Y_test==0] = -1 | |
C = 0.01 | |
w = np.zeros((nb_features, 1)) | |
# Implement a Passive Aggressive Classification | |
for i in range(X_train.shape[0]): | |
xi = X_train[i].reshape((nb_features, 1)) | |
loss = max(0, 1 - (Y_train[i] * np.dot(w.T, xi))) | |
tau = loss / (np.power(np.linalg.norm(xi, ord=2), 2) + (1 / (2*C))) | |
coeff = tau * Y_train[i] | |
w += coeff * xi | |
# Compute accuracy | |
Y_pred = np.sign(np.dot(w.T, X_test.T)) | |
c = np.count_nonzero(Y_pred - Y_test) | |
print('PA accuracy: {}'.format(1 - float(c) / X_test.shape[0])) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment