1
2
3
4
5
6
7
pub mod error;
mod float;
pub mod glm;
pub mod ols;

pub use glm::TweedieRegressor;
pub use ols::LinearRegression;