Fine-tuning means adjusting a pre-trained model to a new task. The best metric depends on the task type:
- Classification: Accuracy, Precision, Recall, and F1-score matter to check if the model correctly labels new data.
- Regression: Mean Squared Error (MSE) or Mean Absolute Error (MAE) show how close predictions are to real values.
Because fine-tuning often uses small new data, overfitting is a risk. So, monitoring validation loss and validation accuracy helps know if the model learns well without memorizing.