slope 0.29.0
Loading...
Searching...
No Matches
slope::Score Class Referenceabstract

Base class for scoring metrics used in regularized generalized linear regression. More...

#include <score.h>

Inheritance diagram for slope::Score:

Public Member Functions

virtual bool isWorse (double other, double current) const =0
 
virtual double initValue () const =0
 
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
 

Static Public Member Functions

static std::unique_ptr< Scorecreate (const std::string &metric)
 

Detailed Description

Base class for scoring metrics used in regularized generalized linear regression.

This abstract class defines the interface for computing various performance metrics that evaluate model predictions against true responses. Derived classes implement specific metrics like MSE, MAE, AUC-ROC etc.

Definition at line 52 of file score.h.

Member Function Documentation

◆ create()

std::unique_ptr< Score > slope::Score::create ( const std::string &  metric)
static

Factory method to create specific Score implementations.

Parameters
metricName of the scoring metric to create
Returns
Unique pointer to created Score object

Definition at line 182 of file score.cpp.

◆ eval()

virtual double slope::Score::eval ( const Eigen::MatrixXd &  eta,
const Eigen::MatrixXd &  y,
const std::unique_ptr< Loss > &  loss 
) const
pure virtual

Evaluates the scoring metric given predictions and true responses.

Parameters
etaMatrix of model predictions
yMatrix of true responses
lossLoss function used in the model
Returns
Computed score value

Implemented in slope::MSE, slope::MAE, slope::Accuracy, slope::MisClass, slope::Deviance, and slope::AUC.

◆ getComparator()

std::function< bool(double, double)> slope::Score::getComparator ( ) const

Returns a comparator function for comparing score values.

Returns
Function object that compares two score values

Definition at line 97 of file score.cpp.

◆ initValue()

virtual double slope::Score::initValue ( ) const
pure virtual

Returns the initial/default value for this scoring metric.

Returns
Initial score value

Implemented in slope::MinimizeScore, and slope::MaximizeScore.

◆ isWorse()

virtual bool slope::Score::isWorse ( double  other,
double  current 
) const
pure virtual

Determines if a score value indicates worse performance.

Parameters
otherThe score to compare against
currentThe current score
Returns
true if other score is worse than current

Implemented in slope::MinimizeScore, and slope::MaximizeScore.


The documentation for this class was generated from the following files: