2#include "../constants.h"
9 return -(y.array() * eta.array() - eta.array().exp()).mean();
14 const Eigen::MatrixXd& y,
15 const Eigen::VectorXd&)
17 const Eigen::ArrayXd e = theta + y;
19 assert(theta.allFinite() &&
"theta is not finite");
27 return eta.array().exp() - y.array();
33 const Eigen::VectorXd& eta,
34 const Eigen::VectorXd& y)
36 w = eta.array().exp();
37 z = eta.array() - 1.0 + y.array() / w.array();
43 if ((y.array() < 0).any()) {
44 throw std::invalid_argument(
"Response must be non-negative");
52 const Eigen::MatrixXd& eta,
53 const Eigen::MatrixXd& y)
57 double hess = eta.array().exp().mean();
59 beta0(0) -= grad / hess;
71 return eta.array().exp();
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).
Eigen::MatrixXd residual(const Eigen::MatrixXd &eta, const Eigen::MatrixXd &y) override
Calculates the residual (negative gradient) for the Poisson regression.
Eigen::MatrixXd predict(const Eigen::MatrixXd &eta) override
Return predicted response, that is 0 or 1 depending on the predicted probabilities.
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,...
double dual(const Eigen::MatrixXd &theta, const Eigen::MatrixXd &y, const Eigen::VectorXd &w) override
Calculates the Fenchel conjugate (dual) of the Poisson loss.
double loss(const Eigen::MatrixXd &eta, const Eigen::MatrixXd &y) override
Calculates the negative log-likelihood loss for the Poisson regression.
Eigen::MatrixXd inverseLink(const Eigen::MatrixXd &eta) override
The inverse link function, also known as the mean function.
Eigen::MatrixXd link(const Eigen::MatrixXd &mu) override
The link function.
Eigen::MatrixXd preprocessResponse(const Eigen::MatrixXd &y) override
Preprocesses the response for the Poisson model.
constexpr double P_MIN
Minimum allowed probability value to avoid numerical underflow.
Namespace containing SLOPE regression implementation.
Poisson loss function implementation for SLOPE algorithm.