Experiment - Why RNNs process sequential data
Problem:We want to understand why Recurrent Neural Networks (RNNs) are good at handling sequential data like sentences or time series. Currently, a simple feedforward neural network is used on sequence data, but it cannot remember previous steps, so it performs poorly.
Current Metrics:Training accuracy: 60%, Validation accuracy: 58%, Loss: 0.9
Issue:The model does not capture the order or context in sequences, leading to low accuracy and poor understanding of sequential patterns.