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

Deviance scoring metric. More...

#include <score.h>

Inheritance diagram for slope::Deviance:
Collaboration diagram for slope::Deviance:

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

Deviance scoring metric.

Computes the statistical deviance, which is -2 times the log-likelihood of the predictions under the specified loss function. Inherits from MinimizeScore since lower deviance indicates better model fit.

Deviance = 2 * ( log L(saturated) - log L (fitted) )

The exact form of deviance depends on the loss function used.

Definition at line 272 of file score.h.

Member Function Documentation

◆ eval()

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

Evaluates the deviance between predictions and true responses.

Parameters
etaMatrix of model predictions
yMatrix of true responses
lossLoss function that defines the likelihood
Returns
Computed deviance value

Implements slope::Score.

Definition at line 165 of file score.cpp.


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