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

Misclassification Rate scoring metric. More...

#include <score.h>

Inheritance diagram for slope::MisClass:
Collaboration diagram for slope::MisClass:

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::MinimizeScore
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

Misclassification Rate scoring metric.

Computes the proportion of incorrect predictions in classification problems. Inherits from MinimizeScore since lower misclassification rates indicate better performance.

Misclassification Rate = 1 - Accuracy = (number of incorrect 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 246 of file score.h.

Member Function Documentation

◆ eval()

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

Evaluates the misclassification rate 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 incorrect predictions (between 0 and 1)

Implements slope::Score.

Definition at line 155 of file score.cpp.


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