Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/deep-diver/linear-regression
implement simple version of "Linear Regression" using only Numpy
https://github.com/deep-diver/linear-regression
linear-regression numpy
Last synced: 3 days ago
JSON representation
implement simple version of "Linear Regression" using only Numpy
- Host: GitHub
- URL: https://github.com/deep-diver/linear-regression
- Owner: deep-diver
- License: apache-2.0
- Created: 2017-07-11T11:08:28.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-07-12T08:36:43.000Z (over 7 years ago)
- Last Synced: 2024-12-11T00:08:55.417Z (about 1 month ago)
- Topics: linear-regression, numpy
- Language: Jupyter Notebook
- Size: 136 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# linear_regression
Linear Regression has been the first obstacle for every machine learning learner because of its simpleness with the core concept which could represent how machine learning works.
The purpose is to understand how the gradient descent works with the simple mathmetical formula. (partial derivative)
This project only depends on numpy.