// const X: [(f64,f64);4] = [(1.0,2.0),(3.0,4.0),(4.0,5.0),(5.0,6.0)];
// pub fn exec_mini_batch_gd(x: &[(f64,f64)], lr:f64, batch_size:i32, itr:i32){
// for &(first, last) in x{
// println!("Element: {:?} {:?}", first, last);
// }
// }
// fn main(){
// exec_mini_batch_gd(&X);
// }