π A Quick Overview
Congratulations! You have covered the basics of Deep learning. Let's have a quick overview of what you learned and discussed. Let's discuss the options available for you with the new skills you have acquired.
We'll cover the following...
Artificial neural network (ANN)
An Artificial Neural Network (ANN) is composed of multiple perceptrons/ neurons at each layer. ANN is a feedforward neural network because inputs are only processed in the forward direction, i.e., each layer feeds its information to the layer next to it until the final layer is reached.
Each network consists of an input, hidden layers, and an output layer. Essentially, each layer learns the weights that best approximates the mapping between the input and the output.
Applications
ANN can be used to solve problems related to:
- Tabular data
- Image data
- Text data
Advantages
ANN is capable of learning any non-linear functions through ...