Before we delve into neural networks and deep learning models, let's take a look at logistic regression, which can be viewed as a single layer neural network. Even the sigmoid function commonly used in logistic regression is used as an activation function in neural networks.
Starting with logistic regression
Getting ready
Logistic regression is a supervised machine learning approach for the classification of dichotomous/ordinal (order discrete) categories.
How to do it...
Logistic regression serves as a building block for complex neural network models using sigmoid...