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

In One Sentence

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

Highlights

Usage

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

From Rust:

``rust // ReplaceSAMPLEMODELwith a&str` to your model. let svm = DenseSVM::tryfrom(SAMPLE_MODEL)?;

let mut problem = Problem::from(&svm); let features = problem.features();

features[0] = 0.55838; features[1] = -0.157895; features[2] = 0.581292; features[3] = -0.221184;

svm.predict_value(&mut problem)?;

assert_eq!(problem.solution(), Solution::Label(42)); ```

From C / FFI:

Please see FFSVM-FFI

Status

Performance

performance

Classification time vs. libSVM for dense models.

performance

Performance milestones during development.

All performance numbers reported for the DenseSVM. We also have support for SparseSVMs, which are slower for "mostly dense" models, and faster for "mostly sparse" models (and generally on the performance level of libSVM).

See here for details.

FAQ

See here for details.