lrclassifier: Logistic Regression Classifiers in rust
lrclassifier
is a Rust library that provides an implementation of the Logistic Regression Classifier, a popular machine learning algorithm for binary classification problems.
Features
- Efficient implementation of Logistic Regression algorithm.
- Supports L2 regularization.
- Customizable learning rate and regularization parameter.
- Easy-to-use API for training models and making predictions.
Quick start
This is the code for a sample positive-negative number classification.
# Cargo.toml
[]
= "*"
// main.rs
use LRClassifier;
License
This project is licensed under the MIT license that can be found here