When using pre-trained models like VGG, ResNet, or MobileNet, the key metrics to watch are accuracy and loss during training and validation. Accuracy tells us how often the model predicts correctly. Loss shows how far off the model's predictions are from the true answers. Since these models are often used for image classification, accuracy is a simple and clear way to see if the model is learning well.
Additionally, if the task is imbalanced (some classes appear more than others), metrics like precision, recall, and F1 score become important to understand how well the model handles each class.