Skip to content

Instantly share code, notes, and snippets.

View jimmy-collazos's full-sized avatar

Jimmy Collazos jimmy-collazos

View GitHub Profile
@6174
6174 / rust_linear_regression
Last active November 13, 2019 08:54
rust linear regression
// ==================================
// linear regression trainer in rust
// @author 6174
// ==================================
// use std::cell::RefCell;
use std::vec::Vec;
fn main() {
// linear_regression();