
Ultimate access to all questions.
A company has built an image classification model to predict plant diseases from photos of plant leaves. The company wants to evaluate how many images the model classified correctly. Which evaluation metric should the company use to measure the model's performance?
Explanation:
Accuracy is the correct evaluation metric for this scenario because:
Classification Problem: The task involves predicting plant diseases from photos, which is a classification problem (categorizing images into different disease classes).
Measuring Correct Predictions: Accuracy measures the proportion of correct predictions out of total predictions, which directly addresses the company's goal of evaluating "how many images the model classified correctly."
Why other options are incorrect:
Practical Application: For image classification tasks like this, accuracy is commonly used as a straightforward metric to understand overall model performance, especially when class distribution is balanced.
Note: While accuracy is appropriate here, for imbalanced datasets (where some diseases are rare), other metrics like precision, recall, or F1-score might provide better insights.