8 return (eta - y).squaredNorm() / (2.0 * y.rows());
13 const Eigen::MatrixXd& y,
14 const Eigen::VectorXd&)
16 const int n = y.rows();
18 return (y.squaredNorm() - (theta + y).squaredNorm()) / (2.0 * n);
36 const Eigen::VectorXd&,
37 const Eigen::VectorXd& y)
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.
Namespace containing SLOPE regression implementation.
Quadratic loss function implementation for SLOPE algorithm.