slope 0.29.0
Loading...
Searching...
No Matches
poisson.h
Go to the documentation of this file.
1
9#pragma once
10
11#include "loss.h"
12
13namespace slope {
24class Poisson : public Loss
25{
26
27public:
28 explicit Poisson()
29 : Loss(std::numeric_limits<double>::infinity())
30 {
31 }
32
41 double loss(const Eigen::MatrixXd& eta, const Eigen::MatrixXd& y) override;
42
50 double dual(const Eigen::MatrixXd& theta,
51 const Eigen::MatrixXd& y,
52 const Eigen::VectorXd& w) override;
53
61 Eigen::MatrixXd residual(const Eigen::MatrixXd& eta,
62 const Eigen::MatrixXd& y) override;
63
73 void updateWeightsAndWorkingResponse(Eigen::VectorXd& w,
74 Eigen::VectorXd& z,
75 const Eigen::VectorXd& eta,
76 const Eigen::VectorXd& y) override;
77
86 Eigen::MatrixXd preprocessResponse(const Eigen::MatrixXd& y) override;
87
98 void updateIntercept(Eigen::VectorXd& beta0,
99 const Eigen::MatrixXd& eta,
100 const Eigen::MatrixXd& y) override;
101
107 Eigen::MatrixXd link(const Eigen::MatrixXd& mu) override;
108
114 Eigen::MatrixXd inverseLink(const Eigen::MatrixXd& eta) override;
115
123 Eigen::MatrixXd predict(const Eigen::MatrixXd& eta) override;
124};
125
126} // namespace slope
Loss function interface.
Definition loss.h:21
The Poisson class represents a Poisson regression loss function.
Definition poisson.h:25
void updateWeightsAndWorkingResponse(Eigen::VectorXd &w, Eigen::VectorXd &z, const Eigen::VectorXd &eta, const Eigen::VectorXd &y) override
Updates the weights and working response for IRLS (Iteratively Reweighted Least Squares).
Definition poisson.cpp:31
Eigen::MatrixXd residual(const Eigen::MatrixXd &eta, const Eigen::MatrixXd &y) override
Calculates the residual (negative gradient) for the Poisson regression.
Definition poisson.cpp:25
Eigen::MatrixXd predict(const Eigen::MatrixXd &eta) override
Return predicted response, that is 0 or 1 depending on the predicted probabilities.
Definition poisson.cpp:75
void updateIntercept(Eigen::VectorXd &beta0, const Eigen::MatrixXd &eta, const Eigen::MatrixXd &y) override
Updates the intercept with a gradient descent update. Unlike the Quadratic and Logistic cases,...
Definition poisson.cpp:51
double dual(const Eigen::MatrixXd &theta, const Eigen::MatrixXd &y, const Eigen::VectorXd &w) override
Calculates the Fenchel conjugate (dual) of the Poisson loss.
Definition poisson.cpp:13
double loss(const Eigen::MatrixXd &eta, const Eigen::MatrixXd &y) override
Calculates the negative log-likelihood loss for the Poisson regression.
Definition poisson.cpp:7
Eigen::MatrixXd inverseLink(const Eigen::MatrixXd &eta) override
The inverse link function, also known as the mean function.
Definition poisson.cpp:69
Eigen::MatrixXd link(const Eigen::MatrixXd &mu) override
The link function.
Definition poisson.cpp:63
Eigen::MatrixXd preprocessResponse(const Eigen::MatrixXd &y) override
Preprocesses the response for the Poisson model.
Definition poisson.cpp:41
The declartion of the Objctive class and its subclasses, which represent the data-fitting part of the...
Namespace containing SLOPE regression implementation.
Definition clusters.cpp:5