Deep Learning
Deep Learning
CNNs process the data by passing it through the multiple layers and extract the features.
Convolutional layer consist of ReLU (Rectified Linear Unit) that outlast to rectify the feature map.
Pooling layer : is used to rectify these feature maps into next feed.
Fully connected layer : which forms the flattened matrix or 2D array fetched from the pooling layer as input
and identifies the image by classifying it.
LSTMs can be defined as Recurrent Neural Networks (RNN) that are programmed to learn and adapt for dependencies
for the long term.
It can memorize and recall past data for a greater period and by default, it is its sole behavior.
LSTMs are designed to retain over time and henceforth they are majorly used in time series predictions because they can
restrain memory or previous inputs.
they can be used to construct speech recognizers, development in pharmaceuticals, and composition of music loops as
well.
RNNs RNNs is that they store historical information and there's no increase in the input size even if the model size
is increased. RNNs look something like this when unfolded.
MLPs are mostly used to build image and speech recognition systems
or some other types of the translation software.
Autoencoders are mostly used as an unsupervised algorithm and its main use-
case is dimensionality reduction and compression. Their trick is that they try to
make the output equal to the input. In other works, they are trying to reconstruct
the data.
They consist of an encoder and a decoder. The encoder receives the input and it
encodes it in a latent space of a lower dimension. The decoder takes that vector
and decodes it back to the original input.
training data is the subset of original data that is used to train the machine learning model
•The training dataset is generally larger in size compared to the testing dataset.
• The general ratios of splitting train and test datasets are 80:20, 70:30, or 90:10.
•Training data is well known to the model as it is used to train the model, whereas testing
data is like unseen/new data to the model.
Explain types of Learning ?