slope 0.29.0
Loading...
Searching...
No Matches
slope::Accuracy Class Reference

Classification Accuracy scoring metric. More...

#include <score.h>

Inheritance diagram for slope::Accuracy:
Collaboration diagram for slope::Accuracy:

Public Member Functions

double eval (const Eigen::MatrixXd &eta, const Eigen::MatrixXd &y, const std::unique_ptr< Loss > &loss) const override
 
- Public Member Functions inherited from slope::MaximizeScore
bool isWorse (double a, double b) const override
 
double initValue () const override
 
- Public Member Functions inherited from slope::Score
std::function< bool(double, double)> getComparator () const
 

Additional Inherited Members

- Static Public Member Functions inherited from slope::Score
static std::unique_ptr< Scorecreate (const std::string &metric)
 

Detailed Description

Classification Accuracy scoring metric.

Computes the proportion of correct predictions in classification problems. Inherits from MaximizeScore since higher accuracy values indicate better performance.

Accuracy = (number of correct predictions) / (total number of predictions)

For binary classification, predictions are thresholded at 0.5. For multi-class problems, the class with highest probability is selected as the prediction for each sample.

Definition at line 216 of file score.h.

Member Function Documentation

◆ eval()

double slope::Accuracy::eval ( const Eigen::MatrixXd &  eta,
const Eigen::MatrixXd &  y,
const std::unique_ptr< Loss > &  loss 
) const
overridevirtual

Evaluates the classification accuracy between predictions and true labels.

Parameters
etaMatrix of model predictions/probabilities
yMatrix of true labels (one-hot encoded)
lossLoss function used to transform predictions if needed
Returns
Proportion of correct predictions (between 0 and 1)

Implements slope::Score.

Definition at line 143 of file score.cpp.


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