Skip to content

Commit bbe78ba

Browse files
committed
add ridge regression
1 parent 87d0d21 commit bbe78ba

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

linear_models/README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
# Linear Models
22
The `lm.py` module implements:
33

4-
1. [OLS linear regression](https://en.wikipedia.org/wiki/Ordinary_least_squares) with maximum likelihood parameter estimates via the Normal equation.
4+
1. [OLS linear regression](https://en.wikipedia.org/wiki/Ordinary_least_squares) with maximum likelihood parameter estimates via the normal equation.
5+
2. [Ridge regression / Tikhonov regularization](https://en.wikipedia.org/wiki/Tikhonov_regularization)
6+
with maximum likelihood parameter estimates via the normal equation.
57
2. [Logistic regression](https://en.wikipedia.org/wiki/Logistic_regression) with maximum likelihood parameter estimates via gradient descent.
68
3. [Bayesian linear regression](https://en.wikipedia.org/wiki/Bayesian_linear_regression) with maximum a posteriori parameter estimates via [conjugacy](https://en.wikipedia.org/wiki/Conjugate_prior#Table_of_conjugate_distributions)
79
- Known coefficient prior mean and known error variance

0 commit comments

Comments
 (0)