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

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

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!