When working with small datasets in computer vision, accuracy, precision, and recall are important to check if the model learns well without overfitting. Overfitting means the model memorizes the small data but fails on new images.
We also look at validation loss and training loss to see if the model generalizes. If validation loss is much higher than training loss, the model is overfitting.
Metrics like F1 score help balance precision and recall, especially if classes are imbalanced.