forked from Shane-Neeley/machine_learning_examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmnist_logisticregression.py
91 lines (68 loc) · 2.53 KB
/
mnist_logisticregression.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
from __future__ import print_function, division
from builtins import range
# Note: you may need to update your version of future
# sudo pip install -U future
import numpy as np
import matplotlib.pyplot as plt
from sklearn.utils import shuffle
import sys
import pandas as pd
data = pd.read_csv('../large_files/train.csv', sep=",").values
limit = 1000
Xtrain = data[1:-limit,1:]
Ytrain = data[1:-limit,:1].flatten()
Xtest = data[-limit:,1:]
Ytest = data[-limit:,:1].flatten()
print(Xtrain.shape)
print(Ytrain.shape)
print(Xtest.shape)
print(Ytest.shape)
# randomly initialize weights
D = Xtrain.shape[1]
W = np.random.randn(D)
b = 0 # bias term
# make predictions
def softmax(a):
expA = np.exp(a)
return expA / expA.sum(axis=1, keepdims=True)
def forward(X, W, b):
return softmax(X.dot(W) + b)
# calculate the accuracy
def classification_rate(Y, P):
return np.mean(Y == P)
# cross entropy
def cross_entropy(T, pY):
return -np.mean(T * np.log(pY) + (1 - T) * np.log(1 - pY))
# train loop
train_costs = []
test_costs = []
learning_rate = 0.001
for i in range(10000): # ten thousand epochs
pYtrain = forward(Xtrain, W, b)
pYtest = forward(Xtest, W, b)
ctrain = cross_entropy(Ytrain, pYtrain)
ctest = cross_entropy(Ytest, pYtest)
train_costs.append(ctrain)
test_costs.append(ctest)
# gradient descent
# W -= learning_rate * (Xtrain.T.dot(pYtrain - Ytrain) - 0.1*W) # shane added regularization term
W -= learning_rate * Xtrain.T.dot(pYtrain - Ytrain)
b -= learning_rate * (pYtrain - Ytrain).sum()
if i % 1000 == 0:
print(i, ctrain, ctest)
print("Final W:", W)
print("Final b:", b)
print("Final train classification_rate:",
classification_rate(Ytrain, np.round(pYtrain)))
print("Final test classification_rate:",
classification_rate(Ytest, np.round(pYtest)))
legend1, = plt.plot(train_costs, label='train cost')
legend2, = plt.plot(test_costs, label='test cost')
plt.legend([legend1, legend2])
plt.show()
# https://www.quora.com/What-does-it-show-when-test-cost-is-always-less-than-training-cost-in-a-CNN
# Practically, training any ML model may result in one of three cases:
# 1- Training error is much smaller than test error -> overfitting, the model learns the training data too well and overfits noise in it.
# 2- Test error is much smaller than training error -> underfitting, the model didn't learn anything and the test result is mere coincidence.
# 3- Training error and Test error are comparable (relatively equal) -> Job done, the model learns well given the available data.
#