Experiment - Context window handling
Problem:You are training a simple text classification model using a fixed-size context window of 5 words. The model currently uses only the immediate 5 words before the target word to predict its class.
Current Metrics:Training accuracy: 92%, Validation accuracy: 75%
Issue:The model shows overfitting and poor generalization because the context window is too small to capture enough information, leading to low validation accuracy.
