Experiment - Train-test split for time series
Problem:You want to predict future values in a time series dataset. Currently, you split the data randomly into training and test sets, which causes data leakage and unrealistic evaluation.
Current Metrics:Training RMSE: 0.15, Test RMSE: 0.50
Issue:Random splitting breaks the time order, causing the model to see future data during training. This leads to over-optimistic training results but poor test performance.