top of page
Day 23: Building a Neural Network
let's look at the coffee roast data again: layer_1 = Dense(units=3, activation="sigmoid") layer_2 = Dense(units=1, activation="sigmoid") ...
Sep 13, 20232 min read

Day 22: Data in TensorFlow
Let's take a look at how NumPy stores vectors and matrices: Examples 1 and 2 above are 2 dimensional matrix example 1: x = np.array([[1,...
Sep 13, 20231 min read
Deep Convolutional Models
Note: These are some of the models introduced in the Deep Learning Specialization course by DeepLearning.ai from Course 4 Week 2. I'm...
Sep 1, 20231 min read

Day 21: TensorFlow Implementation
Inference in code TensorFlow is one of the leading frameworks to implementing deep learning algorithms. In today's section, we will take...
Aug 25, 20233 min read

Day 20: Inference-making predictions (forward propagation)
Let's take what we have learned and put it together into an algorithm to let our neural network make inferences or predictions. This will...
Aug 25, 20231 min read
bottom of page