-
Notifications
You must be signed in to change notification settings - Fork 1
/
dropout.py
59 lines (45 loc) · 1.55 KB
/
dropout.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
import numpy as np
def cnn_dropout(weights, keep_probability):
"""
Compute the dropout operation to a convolutional layer
Parameters
----------
weights : ndarray
The array that pass through the dropout operation.
The expected shape is (N, C, H, W), where:
- N = number of images
- C = number of channels
- H = height
- W = width
keep_probability : int
Probability of not shutting down a neuron
Returns
-------
new_weights : ndarray
The original array with some neurons shut down
"""
probabilities = np.random.rand(weights.shape[2], weights.shape[3]) < keep_probability
new_weights = np.multiply(weights, probabilities)
new_weights /= keep_probability
return new_weights
def dense_dropout(weights, keep_probability):
"""
Compute the dropout operation to a dense layer
Parameters
----------
weights : ndarray
The array that pass through the dropout operation.
The expected shape is (N, H), where:
- N = number of images
- H = number of hidden layers
keep_probability : int
Probability of not shutting down a neuron
Returns
-------
new_weights : ndarray
The original array with some neurons shut down
"""
probabilities = np.random.rand(weights.shape[0], weights.shape[1]) < keep_probability
new_weights = np.multiply(weights, probabilities)
new_weights /= keep_probability
return new_weights