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?
Select an option, then click Submit answer.
Reference / correct answer:
Most accepted answer: B. Accuracy
Community votes: B=9
Accuracy is the most straightforward metric, measuring the proportion of correctly predicted instances out of the total instances. It is suitable when the classes are balanced (but can be misleading for imbalanced datasets). upvoted 9 times
Selected Answer: B Accuracy= Total predictions / Number of correct predictions If you see how many were correctly classified then it is Accuracy (binary & multiclass) If you see regression values then it is R² or RMSE (predicting continuous values) No metric called Learning rate Classification metrics These apply when theproblem is classification (e.g., predicting illness vs healthy, disease types, etc.): Accuracy , AUC, BalancedAccuracy ,F1 score ,F1macro ,Precision , PrecisionMacro ,Recall ,RecallMacro —,LogLoss — Regression metrics For regression tasks (predicting continuous values): MAE — mean absolute error , MSE — mean squared error. Other metrics InferenceLatency (useful for performance diagnostics). upvoted 3 times
Selected Answer: B B is correct. upvoted 1 times
Selected Answer: B Accuracy is a common metric for evaluating image classification , when the accuracy is high, it generally means the model is performing well by making a higher proportion of correct predictions. upvoted 1 times
Selected Answer: B B is the correct answer. upvoted 1 times