Experiment - Image as numerical data (pixels, channels)
Problem:You want to understand how images are represented as numbers for machine learning. Currently, you have a simple model that classifies images but it treats images as flat lists of numbers without considering color channels properly.
Current Metrics:Training accuracy: 85%, Validation accuracy: 70%
Issue:The model overfits because it does not use the image's channel information correctly, leading to poor validation accuracy.