Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/walkerdustin/python-linear-regression

simple linear regression in python based on coursera andrew ng course
https://github.com/walkerdustin/python-linear-regression

ai linear-regression machine-learning ml numpy python

Last synced: 11 days ago
JSON representation

simple linear regression in python based on coursera andrew ng course

Awesome Lists containing this project

README

        

# my own simple linear regression
this is my attempt at creating a linear regression model from scratch
The model should have the same user interface as sklearn
model = LinearRegression()
model.fit(X, Y)

The only external Resource for this Implementation is the following Formula for regularized Gradient descent, taken from the Original Machine Learning Course from Andrew NG

![formula](./regularized_linear_regression.png)