LightGBM is a fast and efficient tool for tasks like classification and regression. The metric you choose depends on your goal.
For classification, common metrics are Accuracy, Precision, Recall, and F1-score. These tell you how well the model finds the right answers.
For regression, metrics like Mean Squared Error (MSE) or Root Mean Squared Error (RMSE) show how close the model's predictions are to actual values.
LightGBM also supports AUC (Area Under the Curve) for classification, which measures how well the model separates classes across all thresholds.
Choosing the right metric helps you understand if LightGBM is doing a good job for your specific problem.