Skip to content

Instantly share code, notes, and snippets.

@flare9x
flare9x / cnn.py
Created May 1, 2019 09:46 — forked from Alescontrela/cnn.py
A multi-layer convolutional neural network created from scratch with NumPy
'''
Description: A multi-layer convolutional neural network created from scratch with NumPy
Author: Alejandro Escontrela
Version: 1.1
License: MIT
'''
import numpy as np
import matplotlib.pyplot as plt
import pickle