![Latest Version] ![Travis-CI Status] ![MIT]

In One Sentence

You trained a binary non-sparse RBF-C-SVM using libSVM, now you want the highest possible performance during (real-time) classification, like games or VR.

Highlights

Principal Usage

Train with libSVM (e.g., using the tool svm-train), then classify with ffsvm-rust.

From Rust:

```rust // Get your libSVM model string from wherever and parse it. let modelstr: &str = includestr!("model.libsvm"); let model = ModelFile::tryfrom(modelstr)!;

// Produce actual SVM from raw model, and a problem let csvm = RbfCSVM::try_from(&model)!; let mut problem = Problem::from(&csvm);

// Set the features of this problem we want to classify. problem.features = vec![ 0.3093766, 0.0, 0.0, 0.0, 0.0, 0.1764706, 0.1137485 ];

// Multiple problems can be trivially parallelized (e.g., with Rayon) csvm.predict_value(&mut problem);

// Results should match libSVM assert_eq!(0, problem.label); ```

From C / FFI:

Please see FFSVM-FFI

Status

Performance

performance

Classification time vs. libSVM.

performance

Performance milestones during development.

See here for details.

FAQ

See here for details.