-
Notifications
You must be signed in to change notification settings - Fork 69
/
Copy pathactivations.py
457 lines (331 loc) · 10.5 KB
/
activations.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
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
import MLlib
import numpy as np
from MLlib import autograd
from MLlib.utils.misc_utils import unbroadcast
class Sigmoid(autograd.Function):
__slots__ = ()
@staticmethod
def forward(ctx, input):
if not (type(input).__name__ == 'Tensor'):
raise RuntimeError("Expected a Tensor, got {}. Please use "
"Sigmoid.activation() for non-Tensor data"
.format(type(input).__name__))
requires_grad = input.requires_grad
output = 1 / (1 + np.exp(-input.data))
output = MLlib.Tensor(output, requires_grad=requires_grad,
is_leaf=not requires_grad)
if requires_grad:
ctx.save_for_backward(output)
return output
@staticmethod
def backward(ctx, grad_output):
o = ctx.saved_tensors[0]
grad_o = o.data * (1 - o.data) * grad_output.data
grad_o = MLlib.Tensor(unbroadcast(grad_o, o.shape))
return grad_o
@staticmethod
def activation(X):
"""
Apply Sigmoid on X Vector.
PARAMETERS
==========
X: ndarray(dtype=float, ndim=1)
Array containing Input Values.
RETURNS
=======
ndarray(dtype=float,ndim=1)
Output Vector after Vectorised Operation.
"""
return 1 / (1 + np.exp(-X))
@staticmethod
def derivative(X):
"""
Calculate derivative of Sigmoid on X Vector.
PARAMETERS
==========
X: ndarray(dtype=float, ndim=1)
Array containing Input Values.
RETURNS
=======
ndarray(dtype=float,ndim=1)
Outputs array of derivatives.
"""
s = 1 / (1 + np.exp(-X))
ds = s * (1 - s)
return ds
class TanH():
@staticmethod
def activation(X):
"""
Apply hyperbolic tangent function on X Vector.
PARAMETERS
==========
X: ndarray(dtype=float, ndim=1)
Array containing Input Values.
RETURNS
=======
ndarray(dtype=float,ndim=1)
Output Vector after Vectorised Operation.
"""
return np.tanh(X)
@staticmethod
def derivative(X):
"""
Calculate derivative of hyperbolic tangent function on X Vector.
PARAMETERS
==========
X: ndarray(dtype=float, ndim=1)
Array containing Input Values.
RETURNS
=======
ndarray(dtype=float,ndim=1)
Outputs array of derivatives.
"""
return 1.0 - np.tanh(X)**2
class Softmax(autograd.Function):
__slots__ = ()
@staticmethod
def forward(ctx, input):
if not (type(input).__name__ == 'Tensor'):
raise RuntimeError("Expected a Tensor, got {}. Please use "
"Softmax.activation() for non-Tensor data"
.format(type(input).__name__))
if len(input.shape) != 2:
raise RuntimeError("Expected a batch of data of size (m, classes)"
", got {}".format(input.shape))
requires_grad = input.requires_grad
e_x = np.exp(input.data)
output = e_x / np.sum(e_x, axis=1, keepdims=True)
# axis=1 because we don't want to compute across batch dimension
output = MLlib.Tensor(output, requires_grad=requires_grad,
is_leaf=not requires_grad)
if requires_grad:
ctx.save_for_backward(output)
return output
@staticmethod
def backward(ctx, grad_output):
output = ctx.saved_tensors[0].data
o = -output[..., None] * output[:, None, :]
diag_x, diag_y = np.diag_indices_from(o[0])
o[:, diag_y, diag_x] = output * (1.0 - output)
grad_o = o.sum(axis=1)
grad_o = grad_o * grad_output.data
grad_o = MLlib.Tensor(grad_o)
return grad_o
@staticmethod
def activation(X):
"""
Apply Softmax on X Vector.
PARAMETERS
==========
X: ndarray(dtype=float, ndim=1)
Array containing Input Values.
Sum: float
Sum of values of Input Array.
RETURNS
=======
ndarray(dtype=float,ndim=1)
Output Vector after Vectorised Operation.
"""
Sum = np.sum(np.exp(X))
return np.exp(X) / Sum
@staticmethod
def derivative(X):
"""
Calculate derivative of Softmax on X Vector.
PARAMETERS
==========
X: ndarray(dtype=float, ndim=1)
Array containing Input Values.
Sum: float
Sum of values of Input Array.
RETURNS
=======
ndarray(dtype=float,ndim=1)
Output Vector after Vectorised Operation.
"""
x_vector = X.reshape(X.shape[0], 1)
x_matrix = np.tile(x_vector, X.shape[0])
x_der = np.diag(X) - (x_matrix * np.transpose(x_matrix))
return x_der
class Softsign():
@staticmethod
def activation(X):
"""
Apply Softsign on X Vector.
PARAMETERS
==========
X: ndarray(dtype=float, ndim=1)
Array containing Input Values.
RETURNS
=======
ndarray(dtype=float,ndim=1)
Output Vector after Vectorised Operation.
"""
return X / (np.abs(X) + 1)
@staticmethod
def derivative(X):
"""
Calculate derivative of Softsign on X Vector.
PARAMETERS
==========
X: ndarray(dtype=float, ndim=1)
Array containing Input Values.
RETURNS
=======
ndarray(dtype=float,ndim=1)
Output Vector after Vectorised Operation.
"""
return 1 / (np.abs(X) + 1)**2
class Relu(autograd.Function):
__slots__ = ()
@staticmethod
def forward(ctx, input):
if not (type(input).__name__ == 'Tensor'):
raise RuntimeError("Expected a Tensor, got {}. Please use "
"Relu.activation() for non-Tensor data"
.format(type(input).__name__))
requires_grad = input.requires_grad
output = np.maximum(input.data, 0)
output = MLlib.Tensor(output, requires_grad=requires_grad,
is_leaf=not requires_grad)
if requires_grad:
ctx.save_for_backward(output)
return output
@staticmethod
def backward(ctx, grad_output):
o = ctx.saved_tensors[0]
grad_o = np.greater(o.data, 0).astype(int) * grad_output.data
grad_o = MLlib.Tensor(unbroadcast(grad_o, o.shape))
return grad_o
@staticmethod
def activation(X):
"""
Apply Rectified Linear Unit on X Vector.
PARAMETERS
==========
X: ndarray(dtype=float, ndim=1)
Array containing Input Values.
RETURNS
=======
ndarray(dtype=float,ndim=1)
Output Vector after Vectorised Operation.
"""
return np.maximum(0, X)
@staticmethod
def derivative(X):
"""
Calculate derivative of Rectified Linear Unit on X Vector.
PARAMETERS
==========
X: ndarray(dtype=float, ndim=1)
Array containing Input Values.
RETURNS
=======
ndarray(dtype=float,ndim=1)
Outputs array of derivatives.
"""
return np.greater(X, 0).astype(int)
class LeakyRelu():
@staticmethod
def activation(X, alpha=0.01):
"""
Apply Leaky Rectified Linear Unit on X Vector.
PARAMETERS
==========
X: ndarray(dtype=float, ndim=1)
Array containing Input Values.
alpha: float
Slope for Values of X less than 0.
RETURNS
=======
ndarray(dtype=float,ndim=1)
Output Vector after Vectorised Operation.
"""
return np.maximum(alpha*X, X)
@staticmethod
def derivative(X, alpha=0.01):
"""
Calculate derivative of Leaky Rectified Linear Unit on X Vector.
PARAMETERS
==========
X: ndarray(dtype=float, ndim=1)
Array containing Input Values.
alpha: float
Slope for Values of X less than 0.
RETURNS
=======
ndarray(dtype=float,ndim=1)
Outputs array of derivatives.
"""
dx = np.greater(X, 0).astype(float)
dx[X < 0] = -alpha
return dx
class Elu():
@staticmethod
def activation(X, alpha=1.0):
"""
Apply Exponential Linear Unit on X Vector.
PARAMETERS
==========
X: ndarray(dtype=float, ndim=1)
Array containing Input Values.
alpha: float
Curve Constant for Values of X less than 0.
RETURNS
=======
ndarray(dtype=float,ndim=1)
Output Vector after Vectorised Operation.
"""
if (alpha <= 0):
raise AssertionError
return np.maximum(0, X) + np.minimum(0, alpha * (np.exp(X) - 1))
def unit_step(X):
"""
Apply Binary Step Function on X Vector.
PARAMETERS
==========
X: ndarray(dtype=float, ndim=1)
Array containing Input Values.
RETURNS
=======
ndarray(dtype=float,ndim=1)
Output Vector after Vectorised Operation.
"""
return np.heaviside(X, 1)
class Swish():
@staticmethod
def activation(X, alpha=1.0):
"""
Apply Swish activation function on X Vector.
PARAMETERS
==========
X: ndarray(dtype=float, ndim=1)
Array containing Input Values.
b: int or float
Either constant or trainable parameter according to the model.
RETURNS
=======
ndarray(dtype=float,ndim=1)
Output Vector after Vectorised Operation.
"""
return X / (1 + np.exp(-(alpha*X)))
@staticmethod
def derivative(X, alpha=1.0):
"""
Calculate derivative of Swish activation function on X Vector.
PARAMETERS
==========
X: ndarray(dtype=float, ndim=1)
Array containing Input Values.
b: int or float
Either constant or trainable parameter according to the model.
RETURNS
=======
ndarray(dtype=float,ndim=1)
Output Vector after Vectorised Operation.
"""
s = 1 / (1 + np.exp(-X))
f = X / (1 + np.exp(-(alpha*X)))
df = f + (s * (1 - f))
return df