week 1
Q NO. 1 — How to solve zero padding ?
week 1
Q NO. 1 — How to solve zero padding ?
This way:
Implement the following function, which pads all the images of a batch of examples X with zeros. Use np.pad. Note if you want to pad the array “a” of shape (5,5,5,5,5) with pad = 1
for the 2nd dimension, pad = 3
for the 4th dimension and pad = 0
for the rest, you would do:
a = np.pad(a, ((0,0), (1,1), (0,0), (3,3), (0,0)), mode='constant', constant_values = (0,0))
Here’s a related question and reply…