//! Linear models for regression and classification
//!
//! Groups [`LinearRegression`] for regression and [`LogisticRegression`] for binary
//! classification. [`LinearRegression`] supports gradient-descent and closed-form solvers.
//! [`LogisticRegression`] trains only by gradient descent and adds the
//! [`generate_polynomial_features`] helper
/// Linear regression with gradient-descent and closed-form solvers
/// Logistic regression for binary classification
pub use ;
pub use ;