Significance of Dense Layer

What is the significance of Dense layer after RNN or LSTM layer while training models ?

hi @Anand_Kumar3

•To change the dimension of output layer from its preceding layer.
•establishing relationships between the data values in the model we are working
•connect the input features to every neurons in the layer
•project dimensions of features to a new dimension.
•in case of classification model, dense layer is used to classify the data based on output from convolution layers.

Regards
DP

1 Like