oxicuda-seq 0.4.0

OxiCUDA: Sequence Models & Structured Prediction (HMM/CRF/Kalman/MRF/alignment)
Documentation
1
2
3
4
5
6
7
8
9
//! Structured SVM with cutting-plane optimisation for linear-chain prediction.

pub mod cutting_plane;
pub mod cutting_plane_full;
pub mod ssvm;

pub use cutting_plane::CuttingPlaneConfig;
pub use cutting_plane_full::{FullCuttingPlaneConfig, FullCuttingPlaneResult, FullCuttingPlaneSvm};
pub use ssvm::StructuredSvm;