// SPDX-License-Identifier: MIT OR Apache-2.0
//! Support Vector Machine classifiers and regressors.
//!
//! Provides [`LinearSVC`] and [`LinearSVR`] using Pegasos SGD.
//!
//! Kernel-based SVMs (`KernelSVC`, `KernelSVR`) are available behind
//! `feature = "experimental"` — they use O(n^2) SMO and are impractical
//! on datasets larger than ~2000 samples.
pub use ;
pub use KernelSVR;
pub use ;