DL - a subfield of ML that involves building and training artificial neural networks with multiple layers. The term "deep" refers to the depth of the network, which means that it has multiple layers of interconnected nodes that allow it to learn complex patterns and relationships in data.


FULLY CONNECTED LAYER

Each neuron is connected to every neuron in the previous layer. In other words, all the outputs of the previous layer are connected to the inputs of the current layer.

In a fully connected layer, each neuron computes a weighted sum of the inputs from the previous layer, adds a bias term, and applies an activation function to produce the output. The weights and biases of the neurons are learned during the training process, using techniques such as backpropagation.

Tricky questions about it:


ACTIVATION FUNCTIONS