![]() |
slope 0.29.0
|
Area Under the ROC Curve (AUC-ROC) scoring metric. More...
#include <score.h>
Public Member Functions | |
double | eval (const Eigen::MatrixXd &eta, const Eigen::MatrixXd &y, const std::unique_ptr< Loss > &loss) const override |
![]() | |
bool | isWorse (double a, double b) const override |
double | initValue () const override |
![]() | |
std::function< bool(double, double)> | getComparator () const |
Additional Inherited Members | |
![]() | |
static std::unique_ptr< Score > | create (const std::string &metric) |
Area Under the ROC Curve (AUC-ROC) scoring metric.
Computes the area under the Receiver Operating Characteristic curve, which plots the true positive rate against false positive rate at various classification thresholds. Inherits from MaximizeScore since higher AUC values indicate better discriminative ability.
For binary classification:
For multi-class problems:
|
overridevirtual |
Evaluates the AUC-ROC score for predictions.
eta | Matrix of model predictions/probabilities |
y | Matrix of true labels (one-hot encoded) |
loss | Loss function used to transform predictions if needed |
Implements slope::Score.