Experiment - Top-K accuracy
Problem:You are training a computer vision model to classify images into 10 categories. The current model achieves 85% accuracy on the training set but only 70% accuracy on the validation set. You want to better understand how often the correct label is among the top 3 predictions, not just the top 1.
Current Metrics:Training accuracy: 85%, Validation accuracy: 70%, Top-1 accuracy only
Issue:The model's top-1 accuracy on validation is low, and you want to evaluate top-K accuracy (top-3) to see if the model predicts the correct label within its top 3 guesses.
