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;
18
19// Planned modules (not yet implemented):
20// pub mod kernel;
21// pub mod cache;
22// pub mod solver;
23// pub mod io;
24// pub mod predict;
25
26pub use error::SvmError;
27pub use types::*;