https://github.com/dinhanhx/single-linear-regression
Homemade single linear regression y = theta0 + theta1 * x
https://github.com/dinhanhx/single-linear-regression
cpp golang java rust-lang
Last synced: 3 months ago
JSON representation
Homemade single linear regression y = theta0 + theta1 * x
- Host: GitHub
- URL: https://github.com/dinhanhx/single-linear-regression
- Owner: dinhanhx
- License: gpl-3.0
- Created: 2020-11-29T02:14:28.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2020-11-30T11:59:27.000Z (over 5 years ago)
- Last Synced: 2025-03-23T18:12:38.374Z (over 1 year ago)
- Topics: cpp, golang, java, rust-lang
- Language: Java
- Homepage:
- Size: 18.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Single-Linear-Regression
Homemade single linear regression `y = theta0 + theta1 * x`
## Linear Regression algorithm
In this project, I implemented by using gradient descent and batch learning.
Too busy to implement with stochastic and mini-batch.
## Language implementation
- [x] C++
- [x] Java
- [x] Go
- [x] Rust
Note: I will never implement in Python!