Crate linfa_logistic[][src]

Logistic Regression

The Big Picture

linfa-logistic is a crate in the linfa ecosystem, an effort to create a toolkit for classical Machine Learning implemented in pure Rust, akin to Python’s scikit-learn.

Current state

linfa-logistic provides a pure Rust implementation of a two class logistic regression model.

Examples

There is an usage example in the examples/ directory. To run, use:

$ cargo run --example winequality

Modules

error

Structs

FittedLogisticRegression

A fitted logistic regression which can make predictions

LogisticRegression

A two-class logistic regression model.