Background
I'm building a regression model on insurance data to predict the losses associated with a policy. I'm running an Optuna optimisation function to help me with this, but I'm struggling with what metric to use to score the model. The metric defines the course of the optimisation, so I want to get it right.
The model I'm currently using is the LGBMRegressor, and the losses are approximately distributed via a gamma distribution.
So far I've used R^2, but I've read that's not a great goodness-of-fit metric.
Question
What metric should I use to score my regression model?