In the previous post, we have seen a naive implementation of Convolutional Neural network using Numpy.
Here, we are going to implement a faster CNN using Numpy with the im2col/col2im method.
To see the full implementation, please refer to my repository.
Also, if you want to read some of my blog posts, feel free to check them at my blog.
I) Forward propagation
:::info