Gradient Boosting is often used for classification and regression. For classification, accuracy, precision, recall, and F1 score are important to understand how well the model predicts classes. For regression, mean squared error (MSE) or mean absolute error (MAE) show how close predictions are to actual values.
Because Gradient Boosting builds many small models to fix errors step-by-step, it can overfit. So, metrics on new data (validation/test) are key to check if the model truly learned patterns, not noise.