slope 0.29.0
Loading...
Searching...
No Matches
logistic.h
Go to the documentation of this file.
1
6#pragma once
7
8#include "loss.h"
9
10namespace slope {
18class Logistic : public Loss
19{
20public:
21 explicit Logistic()
22 : Loss(0.25)
23 {
24 }
25
32 double loss(const Eigen::MatrixXd& eta, const Eigen::MatrixXd& y);
33
41 double dual(const Eigen::MatrixXd& theta,
42 const Eigen::MatrixXd& y,
43 const Eigen::VectorXd& w);
44
51 Eigen::MatrixXd residual(const Eigen::MatrixXd& eta,
52 const Eigen::MatrixXd& y);
53
61 Eigen::MatrixXd preprocessResponse(const Eigen::MatrixXd& y);
62
71 void updateWeightsAndWorkingResponse(Eigen::VectorXd& w,
72 Eigen::VectorXd& z,
73 const Eigen::VectorXd& eta,
74 const Eigen::VectorXd& y);
75
81 Eigen::MatrixXd link(const Eigen::MatrixXd& mu);
82
88 Eigen::MatrixXd inverseLink(const Eigen::MatrixXd& eta);
89
96 Eigen::MatrixXd predict(const Eigen::MatrixXd& eta);
97};
98
99} // namespace slope
The Logistic class represents a logistic loss function.
Definition logistic.h:19
Eigen::MatrixXd preprocessResponse(const Eigen::MatrixXd &y)
Preprocesses the response for the quadratic model.
Definition logistic.cpp:36
double dual(const Eigen::MatrixXd &theta, const Eigen::MatrixXd &y, const Eigen::VectorXd &w)
Calculates the dual for the logistic loss function.
Definition logistic.cpp:16
Eigen::MatrixXd inverseLink(const Eigen::MatrixXd &eta)
The inverse link function, also known as the mean function.
Definition logistic.cpp:71
void updateWeightsAndWorkingResponse(Eigen::VectorXd &w, Eigen::VectorXd &z, const Eigen::VectorXd &eta, const Eigen::VectorXd &y)
Updates the weights and working response for the logistic loss function.
Definition logistic.cpp:50
Eigen::MatrixXd residual(const Eigen::MatrixXd &eta, const Eigen::MatrixXd &y)
Calculates the residual for the logistic loss function.
Definition logistic.cpp:30
double loss(const Eigen::MatrixXd &eta, const Eigen::MatrixXd &y)
Calculates the loss for the logistic loss function.
Definition logistic.cpp:8
Eigen::MatrixXd predict(const Eigen::MatrixXd &eta)
Return predicted response, that is 0 or 1 depending on the predicted probabilities.
Definition logistic.cpp:78
Eigen::MatrixXd link(const Eigen::MatrixXd &mu)
The link function.
Definition logistic.cpp:63
Loss function interface.
Definition loss.h:21
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