rustyml 0.13.0

A high-performance machine learning & deep learning library in pure Rust, offering ML algorithms and neural network support
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Linear models trained by gradient descent
//!
//! Groups [`LinearRegression`] for regression and [`LogisticRegression`] for binary
//! classification (with its [`generate_polynomial_features`] helper)

/// Linear regression via gradient descent
pub mod linear_regression;
/// Logistic regression for binary classification
pub mod logistic_regression;

pub use linear_regression::{LinearRegression, Solver};
pub use logistic_regression::{LogisticRegression, generate_polynomial_features};