2 U4-Rnn
2 U4-Rnn
• Below is how you can convert a Feed-Forward Neural Network into a Recurrent Neural Network:
• The nodes in different layers of the neural network are compressed to form a single layer of
recurrent neural networks. A, B, and C are the parameters of the network.
• Here, “x” is the input layer, “h” is the hidden layer, and “y” is the output layer. A, B, and C are the
network parameters used to improve the output of the model. At any given time t, the current input is
a combination of input at x(t) and x(t-1). The output at any given time is fetched back to the network
to improve on the output.
Applications of Recurrent Neural Networks
• Image Captioning
• RNNs are used to caption an image by analysing the activities present.
Time Series Prediction
Any time series problem, like predicting the prices of stocks in a particular month, can be solved using
an RNN.