top of page

Day 28: Neural Network with softmax output
In order to build a neural network that can carry out multi-class classification, we are going to take the softmax regression model and...
Sep 27, 20232 min read

Day 27: Multi-class Classification
Multi-class Multi-class classification refers to classification problems where you can have more than just 2 possible output labels, so...
Sep 27, 20232 min read

Day 26: Activation Functions
Alternatives to the Sigmoid Function So far, we have been using the sigmoid function in all the nodes in the hidden layers, but out...
Sep 27, 20232 min read

Day 25: Neural Network Training
TensorFlow Implementation In previous post, we learned how to carry out forward pass in neural network. This week, we're going to go over...
Sep 26, 20232 min read

Day 24: Neural Network implementation in Python
Forward Prop in a single layer In this section, we will explore implementation of forward propagation from scratch. We're going to take...
Sep 14, 20232 min read
bottom of page