https://github.com/rbhatia46/linear_regression_python
Linear Regression in Python with only Numpy. The following code predicts test scores of students given the amount of hours studied. It uses Gradient Descent to minimize the cost function.
https://github.com/rbhatia46/linear_regression_python
Last synced: 7 months ago
JSON representation
Linear Regression in Python with only Numpy. The following code predicts test scores of students given the amount of hours studied. It uses Gradient Descent to minimize the cost function.
- Host: GitHub
- URL: https://github.com/rbhatia46/linear_regression_python
- Owner: rbhatia46
- Created: 2018-05-28T14:36:38.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-05-28T14:44:13.000Z (over 7 years ago)
- Last Synced: 2025-01-24T18:37:04.970Z (9 months ago)
- Language: Python
- Size: 2.93 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# linear_regression_python
Linear Regression in Python with only Numpy. The following code predicts test scores of students given the amount of hours studied. It uses Gradient Descent to minimize the cost function.## Dependencies
* Numpy## Usage
```
python main.py
```