When reviewing a CNN (Convolutional Neural Network) architecture, the key metrics to focus on are accuracy, precision, recall, and F1 score. These metrics tell us how well the CNN is recognizing patterns and making correct predictions.
Accuracy shows overall correctness, but it can be misleading if classes are unbalanced. Precision tells us how many predicted positives are actually correct, which is important when false alarms are costly. Recall tells us how many real positives the model finds, which matters when missing a positive is bad. F1 score balances precision and recall, giving a single number to compare models.
For CNNs used in image tasks, these metrics help us understand if the architecture is good at learning useful features and generalizing to new images.