ValueError: multiclass format is not supported
It seems the task you are trying to solve is regression: predicting the price. However, you are training a classification model, that assigns a class to every input. ROC-AUC score is meant for classification problems where the output is the probability of the input belonging to a class. If you do a multi-class classification, then …