![]() |
slope 0.29.0
|
Scoring metric that aims to maximize the score value. More...
#include <score.h>
Public Member Functions | |
bool | isWorse (double a, double b) const override |
double | initValue () const override |
![]() | |
std::function< bool(double, double)> | getComparator () const |
virtual double | eval (const Eigen::MatrixXd &eta, const Eigen::MatrixXd &y, const std::unique_ptr< Loss > &loss) const =0 |
Additional Inherited Members | |
![]() | |
static std::unique_ptr< Score > | create (const std::string &metric) |
Scoring metric that aims to maximize the score value.
This class implements a scoring metric where higher values indicate better performance (e.g., R², AUC-ROC, accuracy). It overrides the base Score class comparison methods to establish that lower values are worse.
|
overridevirtual |
Returns the initial value for maximization metrics.
Implements slope::Score.
|
overridevirtual |
Determines if score a is worse than score b.
a | First score to compare |
b | Second score to compare |
Implements slope::Score.