Which of the following statement is CORRECT for RNN?
The correct answer is E. a, b and c only because all three statements correctly describe Recurrent Neural Networks and their limitation. RNNs are neural network models designed for sequential data such as text, speech, time-series data, and ordered events. They process information step by step and use previous hidden states to influence later outputs.
Statement A is correct because a major drawback of traditional RNNs is their difficulty in remembering information over many time steps. This happens mainly because of vanishing gradient problems during training. Statement B is also correct because standard RNNs generally struggle with long-term dependencies, meaning they may fail to retain important information from earlier parts of a sequence. Statement C is correct because Long Short-Term Memory networks are a specialized extension of RNNs designed to handle long-term memory more effectively using gates that control what information is stored, forgotten, and passed forward.
Therefore, the best answer is E. a, b and c only.
Kattie
1 month ago