Skip to content

Commit

Permalink
add ridge regression
Browse files Browse the repository at this point in the history
  • Loading branch information
ddbourgin committed Jul 3, 2019
1 parent 87d0d21 commit bbe78ba
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion linear_models/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
# Linear Models
The `lm.py` module implements:

1. [OLS linear regression](https://en.wikipedia.org/wiki/Ordinary_least_squares) with maximum likelihood parameter estimates via the Normal equation.
1. [OLS linear regression](https://en.wikipedia.org/wiki/Ordinary_least_squares) with maximum likelihood parameter estimates via the normal equation.
2. [Ridge regression / Tikhonov regularization](https://en.wikipedia.org/wiki/Tikhonov_regularization)
with maximum likelihood parameter estimates via the normal equation.
2. [Logistic regression](https://en.wikipedia.org/wiki/Logistic_regression) with maximum likelihood parameter estimates via gradient descent.
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)
- Known coefficient prior mean and known error variance
Expand Down

0 comments on commit bbe78ba

Please sign in to comment.