libsvm_rs/lib.rs
1//! # libsvm-rs
2//!
3//! A pure Rust reimplementation of [LIBSVM](https://github.com/cjlin1/libsvm),
4//! targeting numerical equivalence and model-file compatibility with the
5//! original C++ library.
6//!
7//! ## Status
8//!
9//! **Early development** — core types and I/O are being implemented.
10//! Training and prediction are not yet available.
11//!
12//! ## Feature Flags
13//!
14//! - `rayon` — Enable parallel cross-validation (off by default).
15
16pub mod types;
17pub mod error;
18pub mod io;
19pub mod kernel;
20pub mod cache;
21
22pub mod predict;
23
24// Planned modules (not yet implemented):
25// pub mod solver;
26
27pub use error::SvmError;
28pub use types::*;