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

https://github.com/farhad-here/linear_regression1

LinearRegression Tutorial
https://github.com/farhad-here/linear_regression1

Last synced: 2 months ago
JSON representation

LinearRegression Tutorial

Awesome Lists containing this project

README

        

# 🎳 linear Regression Tutorial

# 🍴formula

$$ predict $$

$$ f(w,b) = f(x) = yhat = wx + b $$

$$costfunction$$

$$ J(w,b) = \frac{1}{2m} \sum_{i=1}^{m} \left( f(w,b)(x^{(i)}) - y^{(i)} \right)^2 $$
$$ J(w,b) = \frac{1}{2m} \sum_{i=1}^{m} \left( yhat(x^{(i)}) - y^{(i)} \right)^2 $$

# 🧑‍💻technology
- numpy
- matplotlib
- scipy