Skip to main content

Building CNN from Scratch using NumPy

Project description

Convolutional neural network implementation using NumPy. Just three layers are created which are convolution (conv for short), ReLU, and max pooling. The major steps involved are as follows:

  1. Reading the input image.

  2. Preparing filters.

  3. Conv layer: Convolving each filter with the input image.

  4. ReLU layer: Applying ReLU activation function on the feature maps (output of conv layer).

  5. Max Pooling layer: Applying the pooling operation on the output of ReLU layer.

  6. Stacking conv, ReLU, and max pooling layers

The project is tested using Python 3.5.2 installed inside Anaconda 4.2.0 (64-bit) NumPy version used is 1.14.0

The file named example.py is an example of using the project.

The code starts by reading an input image. That image can be either single or multi-dimensional image. In this examplel, an input gray is used and this is why it is required to ensure the image is already gray.

The filters of the first conv layer are prepared according to the input image dimensions. The filter is created by specifying the following:

  1. Number of filters.

  2. Size of first dimension.

  3. Size of second dimension.

  4. Size of third dimension and so on.

Because the previous image is just gray, then the filter will have just width and height and no depth. That is why it is created by specifying just three numbers (number of filters, width, and height).

The code can still work with RGb images. The only difference is using filters of similar shape to the image. If the image is RGB and not converted to gray, then the filter will be created by specifying 4 numbers (number of filters, width, height, and number of channels).


For more details, refer to the article describing this project which is titled "Building Convolutional Neural Network using NumPy from Scratch". It is available in these links:

LinkedIn: https://www.linkedin.com/pulse/building-convolutional-neural-network-using-numpy-from-ahmed-gad/

KDnuggets: https://www.kdnuggets.com/2018/04/building-convolutional-neural-network-numpy-scratch.html It is also translated into Chinese: http://m.aliyun.com/yunqi/articles/585741


Contact the author:

KDnuggets: https://www.kdnuggets.com/author/ahmed-gad LinkedIn: https://www.linkedin.com/in/ahmedfgad

Facebook: https://www.facebook.com/ahmed.f.gadd

ahmed.f.gad@gmail.com ahmed.fawzy@ci.menofia.edu.eg

Project details


Release history Release notifications | RSS feed

This version

1.7

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

numpycnn-1.7.tar.gz (4.7 kB view details)

Uploaded Source

Built Distribution

numpycnn-1.7-py3-none-any.whl (5.8 kB view details)

Uploaded Python 3

File details

Details for the file numpycnn-1.7.tar.gz.

File metadata

  • Download URL: numpycnn-1.7.tar.gz
  • Upload date:
  • Size: 4.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for numpycnn-1.7.tar.gz
Algorithm Hash digest
SHA256 deb93d90b8955756c0d51face066a51c9547ac8fb857b2d64675fe6ffa6291b8
MD5 2a106f80638a79fb8c843669852bb687
BLAKE2b-256 5aa79cd52d60331836bb9373a734b42f1f73c82cb374fd0ae40ef9d159387783

See more details on using hashes here.

File details

Details for the file numpycnn-1.7-py3-none-any.whl.

File metadata

File hashes

Hashes for numpycnn-1.7-py3-none-any.whl
Algorithm Hash digest
SHA256 7d0e90ad38ca6aad29b885eef903af4ab2dc81fa05abe4de51a5f94c1c83fc0c
MD5 afba18b0110c2105544adbad0a691b98
BLAKE2b-256 77fcbca648b339effddf3df4fc8f53b8725f516b31ed00ddbd6c67cf89cf2231

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page