Deep Neural Network with MNIST Digit Recognition Example from Scratch 3 years ago 9 min read neural-network Multiclass classification using deep neural network in numpy only. Also MNIST handwritten digit classification in numpy.
Deep L-layer Neural Network from Scratch in Python 3 years ago 6 min read neural-network Basics of feed-forward neural networks. Generic implementation for L layer deep neural network in NumPy.
Introduction to Natural Language Processing using Tensorflow 3 years ago 7 min read natural language processingneural-networktensorflow The most important part of natural language processing is embedding means How to represent sentences?
Tour to the Land of Activation Functions 3 years ago 8 min read neural-network Which properties of the activation function are necessary to become a good activation function ? and pros & cons of each activation function with a detailed description like mathematical formulae and their derivative.
Logistic Regression and Basics of Neural Network 3 years ago 10 min read neural-network Basics of feedforward neural networks with logistic regression. Learn forward pass, backward pass & activation function from scratch in python.