-
Notifications
You must be signed in to change notification settings - Fork 0
/
NeuralNet.py
265 lines (223 loc) · 10.7 KB
/
NeuralNet.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
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
#####################################################################################################################
# CS 6375.003 - Assignment 3, Neural Network Programming
# This is a starter code in Python 3.6 for a 2-hidden-layer neural network.
# You need to have numpy and pandas installed before running this code.
# Below are the meaning of symbols:
# train - training dataset - can be a link to a URL or a local file
# - you can assume the last column will the label column
# train - test dataset - can be a link to a URL or a local file
# - you can assume the last column will the label column
# h1 - number of neurons in the first hidden layer
# h2 - number of neurons in the second hidden layer
# X - vector of features for each instance
# y - output for each instance
# w01, delta01, X01 - weights, updates and outputs for connection from layer 0 (input) to layer 1 (first hidden)
# w12, delata12, X12 - weights, updates and outputs for connection from layer 1 (first hidden) to layer 2 (second hidden)
# w23, delta23, X23 - weights, updates and outputs for connection from layer 2 (second hidden) to layer 3 (output layer)
#
# You need to complete all TODO marked sections
# You are free to modify this code in any way you want, but need to mention it in the README file.
#
#####################################################################################################################
import numpy as np
import pandas as pd
from sklearn import preprocessing as pp
class NeuralNet:
def __init__(self, train, header=True, h1=4, h2=2):
np.random.seed(1)
# train refers to the training dataset
# test refers to the testing dataset
# h1 and h2 represent the number of nodes in 1st and 2nd hidden layers
raw_input = pd.read_csv(train, header=0)
# TODO: Remember to implement the preprocess method
train_dataset = raw_input
ncols = len(train_dataset.columns)
nrows = len(train_dataset.index)
self.X = train_dataset.iloc[:, 0:(ncols -1)].values.reshape(nrows, ncols-1)
self.y = train_dataset.iloc[:, (ncols-1)].values.reshape(nrows, 1)
self.X, self.y = self.preprocess(self.X,self.y)
#
# Find number of input and output layers from the dataset
#
input_layer_size = len(self.X[0])
if not isinstance(self.y[0], np.ndarray):
output_layer_size = 1
else:
output_layer_size = len(self.y[0])
# assign random weights to matrices in network
# number of weights connecting layers = (no. of nodes in previous layer) x (no. of nodes in following layer)
self.w01 = 2 * np.random.random((input_layer_size, h1)) - 1
self.X01 = self.X
self.delta01 = np.zeros((input_layer_size, h1))
self.w12 = 2 * np.random.random((h1, h2)) - 1
self.X12 = np.zeros((len(self.X), h1))
self.delta12 = np.zeros((h1, h2))
self.w23 = 2 * np.random.random((h2, output_layer_size)) - 1
self.X23 = np.zeros((len(self.X), h2))
self.delta23 = np.zeros((h2, output_layer_size))
self.deltaOut = np.zeros((output_layer_size, 1))
#
# TODO: I have coded the sigmoid activation function, you need to do the same for tanh and ReLu
#
def __activation(self, x, activation="sigmoid"):
if activation == "sigmoid":
self.__sigmoid(self, x)
elif activation == "tanh":
self.__tanh(self, x)
elif activation == "relu":
self.__relu(self, x)
#
# TODO: Define the function for tanh, ReLu and their derivatives
#
def __activation_derivative(self, x, activation="sigmoid"):
if activation == "sigmoid":
self.__sigmoid_derivative(self, x)
elif activation == "tanh":
self.__tanh_derivative(self, x)
elif activation == "relu":
self.__relu_derivative(self, x)
def __sigmoid(self, x):
return 1 / (1 + np.exp(-x))
# derivative of sigmoid function, indicates confidence about existing weight
def __sigmoid_derivative(self, x):
return x * (1 - x)
def __tanh(self,x):
return np.tanh(x)
def __tanh_derivative(self,x):
return (1 - (x ** 2))
def __relu(self,x):
return np.maximum(0, x)
def __relu_derivative(self,x):
for i in range(0, len(x)):
for k in range(len(x[i])):
if x[i][k] > 0:
x[i][k] = 1
elif x[i][k] < 0:
x[i][k] = 0
return x
#
# TODO: Write code for pre-processing the dataset, which would include standardization, normalization,
# categorical to numerical, etc
#
# def preprocess(self, X):
# X["species"] = X["species"].astype('category')
# X["species"] = X["species"].cat.codes
# onehot_encoder = pp.OneHotEncoder(sparse=False)
# X["species"] = onehot_encoder.fit_transform(X["species"])
# print(X)
# result = X.copy()
# for feature_name in X.columns:
# if feature_name != "species":
# max_value = X[feature_name].max()
# min_value = X[feature_name].min()
# result[feature_name] = (X[feature_name] - min_value) / (max_value - min_value)
# return result
def preprocess(self, X, y):
scaler = pp.StandardScaler()
scaler.fit(X)
X = scaler.transform(X)
label_encoder = pp.LabelEncoder()
integer_encoded = label_encoder.fit_transform(y)
# binary encode
onehot_encoder = pp.OneHotEncoder(sparse=False)
integer_encoded = integer_encoded.reshape(len(integer_encoded), 1)
y = onehot_encoder.fit_transform(integer_encoded)
return X,y
# Below is the training function
def train(self, max_iterations = 10000, learning_rate = 0.001):
for iteration in range(max_iterations):
out = self.forward_pass("relu")
error = 0.5 * np.power((out - self.y), 2)
self.backward_pass(out, activation="relu")
update_layer2 = learning_rate * self.X23.T.dot(self.deltaOut)
update_layer1 = learning_rate * self.X12.T.dot(self.delta23)
update_input = learning_rate * self.X01.T.dot(self.delta12)
self.w23 += update_layer2
self.w12 += update_layer1
self.w01 += update_input
print("After " + str(max_iterations) + " iterations, the total error is " + str(np.sum(error)))
print("The final weight vectors are (starting from input to output layers)")
print(self.w01)
print(self.w12)
print(self.w23)
def forward_pass(self,activation ="sigmoid"):
# pass our inputs through our neural network
if activation == "sigmoid":
in1 = np.dot(self.X, self.w01)
self.X12 = self.__sigmoid(in1)
in2 = np.dot(self.X12, self.w12)
self.X23 = self.__sigmoid(in2)
in3 = np.dot(self.X23, self.w23)
out = self.__sigmoid(in3)
elif activation == "tanh":
in1 = np.dot(self.X, self.w01)
self.X12 = self.__tanh(in1)
in2 = np.dot(self.X12, self.w12)
self.X23 = self.__tanh(in2)
in3 = np.dot(self.X23, self.w23)
out = self.__tanh(in3)
elif activation == "relu":
in1 = np.dot(self.X, self.w01)
self.X12 = self.__relu(in1)
in2 = np.dot(self.X12, self.w12)
self.X23 = self.__relu(in2)
in3 = np.dot(self.X23, self.w23)
out = self.__relu(in3)
return out
def backward_pass(self, out, activation):
# pass our inputs through our neural network
self.compute_output_delta(out, activation)
self.compute_hidden_layer2_delta(activation)
self.compute_hidden_layer1_delta(activation)
# TODO: Implement other activation functions
def compute_output_delta(self, out, activation="sigmoid"):
if activation == "sigmoid":
delta_output = (self.y - out) * (self.__sigmoid_derivative(out))
elif activation == "tanh":
delta_output = (self.y - out) * (self.__tanh_derivative(out))
elif activation == "relu":
delta_output = (self.y - out) * (self.__relu_derivative(out))
self.deltaOut = delta_output
# TODO: Implement other activation functions
def compute_hidden_layer2_delta(self, activation="sigmoid"):
if activation == "sigmoid":
delta_hidden_layer2 = (self.deltaOut.dot(self.w23.T)) * (self.__sigmoid_derivative(self.X23))
elif activation == "tanh":
delta_hidden_layer2 = (self.deltaOut.dot(self.w23.T)) * (self.__tanh_derivative(self.X23))
elif activation == "relu":
delta_hidden_layer2 = (self.deltaOut.dot(self.w23.T)) * (self.__relu_derivative(self.X23))
self.delta23 = delta_hidden_layer2
# TODO: Implement other activation functions
def compute_hidden_layer1_delta(self, activation="sigmoid"):
if activation == "sigmoid":
delta_hidden_layer1 = (self.delta23.dot(self.w12.T)) * (self.__sigmoid_derivative(self.X12))
elif activation == "tanh":
delta_hidden_layer1 = (self.delta23.dot(self.w12.T)) * (self.__tanh_derivative(self.X12))
elif activation == "relu":
delta_hidden_layer1 = (self.delta23.dot(self.w12.T)) * (self.__relu_derivative(self.X12))
self.delta12 = delta_hidden_layer1
# TODO: Implement other activation functions
def compute_input_layer_delta(self, activation="sigmoid"):
if activation == "sigmoid":
delta_input_layer = np.multiply(self.__sigmoid_derivative(self.X01), self.delta01.dot(self.w01.T))
elif activation == "tanh":
delta_input_layer = np.multiply(self.__tanh_derivative(self.X01), self.delta01.dot(self.w01.T))
elif activation == "relu":
delta_input_layer = np.multiply(self.__relu_derivative(self.X01), self.delta01.dot(self.w01.T))
self.delta01 = delta_input_layer
# TODO: Implement the predict function for applying the trained model on the test dataset.
# You can assume that the test dataset has the same format as the training dataset
# You have to output the test error from this function
def predict(self, test, header=True):
nn = NeuralNet(test)
nn.w01 = self.w01
nn.w12 = self.w12
nn.w23 = self.w23
out = nn.forward_pass("relu")
error = 0.5 * np.power((out - nn.y), 2)
return np.sum(error)
if __name__ == "__main__":
neural_network = NeuralNet("train.csv")
neural_network.train()
testError = neural_network.predict("test.csv")
print("Test error:" + str(testError))