//! Regression estimators with a `fit`/`predict` API.
//!
//! Provides ordinary least squares ([`LinearRegression`]), L2-regularized
//! ([`Ridge`]), L1-regularized ([`Lasso`]) linear models, and binary
//! [`LogisticRegression`] for classification. All share the
//! [`Predictor`](crate::traits::Predictor) trait and the [`crate::linalg`]
//! solver foundation; regression models additionally implement
//! [`Regressor`](crate::traits::Regressor), while logistic regression implements
//! [`Classifier`](crate::traits::Classifier).
/// L1-regularized regression (coordinate descent).
/// Ordinary least-squares linear regression.
/// Binary logistic regression (IRLS solver).
/// L2-regularized ridge regression.
pub use Lasso;
pub use ;
pub use ;
pub use ;