10 lines
184 B
Rust
10 lines
184 B
Rust
//! Linear machine learning models
|
|
|
|
pub mod elastic_net;
|
|
pub mod logistic;
|
|
pub mod ridge;
|
|
|
|
pub use elastic_net::ElasticNet;
|
|
pub use logistic::LogisticRegression;
|
|
pub use ridge::Ridge;
|