46 double loss(
const Eigen::MatrixXd& eta,
const Eigen::MatrixXd& y);
59 double dual(
const Eigen::MatrixXd& theta,
60 const Eigen::MatrixXd& y,
61 const Eigen::VectorXd& w);
73 Eigen::MatrixXd
residual(
const Eigen::MatrixXd& eta,
74 const Eigen::MatrixXd& y);
101 const Eigen::VectorXd& eta,
102 const Eigen::VectorXd& y);
109 Eigen::MatrixXd
link(
const Eigen::MatrixXd& mu);
116 Eigen::MatrixXd
inverseLink(
const Eigen::MatrixXd& eta);
123 Eigen::MatrixXd
predict(
const Eigen::MatrixXd& eta);
Implementation of the Quadratic loss function.
double dual(const Eigen::MatrixXd &theta, const Eigen::MatrixXd &y, const Eigen::VectorXd &w)
Computes the dual function for the quadratic loss.
Eigen::MatrixXd preprocessResponse(const Eigen::MatrixXd &y)
Preprocesses the response for the quadratic model.
Eigen::MatrixXd inverseLink(const Eigen::MatrixXd &eta)
The link function, also known as the mean function.
double loss(const Eigen::MatrixXd &eta, const Eigen::MatrixXd &y)
Calculates the quadratic (least-squares) loss.
void updateWeightsAndWorkingResponse(Eigen::VectorXd &w, Eigen::VectorXd &z, const Eigen::VectorXd &eta, const Eigen::VectorXd &y)
Updates weights and working response for IRLS algorithm.
Eigen::MatrixXd predict(const Eigen::MatrixXd &eta)
Return predicted response, which is the same as the linear predictor.
Eigen::MatrixXd link(const Eigen::MatrixXd &mu)
The link function.
Eigen::MatrixXd residual(const Eigen::MatrixXd &eta, const Eigen::MatrixXd &y)
Calculates residuals for the quadratic model.
The declartion of the Objctive class and its subclasses, which represent the data-fitting part of the...
Namespace containing SLOPE regression implementation.