#012 B Building a Deep Neural Network from scratch in Python
In this post, we will see how to implement a deep Neural Network in Python from scratch. It isn’t something that we will do often in practice, but it is a good way to understand the inner workings of Deep Learning. First, we will import the libraries we will use in the following code. In the following code, we will define activation functions: \(sigmoid \), \(ReLU \), and \(tanh \) we will also save values…
Read more