29 :
Loss(std::numeric_limits<double>::infinity())
41 double loss(
const Eigen::MatrixXd& eta,
const Eigen::MatrixXd& y)
override;
50 double dual(
const Eigen::MatrixXd& theta,
51 const Eigen::MatrixXd& y,
52 const Eigen::VectorXd& w)
override;
61 Eigen::MatrixXd
residual(
const Eigen::MatrixXd& eta,
62 const Eigen::MatrixXd& y)
override;
75 const Eigen::VectorXd& eta,
76 const Eigen::VectorXd& y)
override;
99 const Eigen::MatrixXd& eta,
100 const Eigen::MatrixXd& y)
override;
107 Eigen::MatrixXd
link(
const Eigen::MatrixXd& mu)
override;
114 Eigen::MatrixXd
inverseLink(
const Eigen::MatrixXd& eta)
override;
123 Eigen::MatrixXd
predict(
const Eigen::MatrixXd& eta)
override;
The Poisson class represents a Poisson regression loss function.
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.
The declartion of the Objctive class and its subclasses, which represent the data-fitting part of the...
Namespace containing SLOPE regression implementation.