Experiment - Embedding layer usage
Problem:We want to classify movie reviews as positive or negative using a neural network. Currently, the model uses one-hot encoding for words, which creates very large input vectors and trains slowly.
Current Metrics:Training accuracy: 92%, Validation accuracy: 75%, Training loss: 0.25, Validation loss: 0.65
Issue:The model overfits: training accuracy is high but validation accuracy is much lower. Also, one-hot encoding wastes memory and does not capture word meaning.