Experiment - Padding and sequence length
Problem:You are working on a text classification task using sequences of words. The sequences have different lengths, but your model requires all sequences to be the same length. Currently, sequences are not padded or truncated, causing errors during training.
Current Metrics:Training accuracy: 85%, Validation accuracy: 80%, Model training fails due to inconsistent input shapes.
Issue:Model input sequences have varying lengths, causing shape mismatch errors. No padding or truncation is applied.