Skip to main content

oxicuda_seq/structured/
mod.rs

1//! Differentiable structured-prediction layers.
2//!
3//! Currently the [`sinkhorn_crf`] module: entropy-regularised optimal-transport
4//! (Sinkhorn) normalisation as a differentiable replacement for sum-product
5//! normalisation in matching / permutation structured prediction.
6
7pub mod sinkhorn_crf;
8
9pub use sinkhorn_crf::{
10    SinkhornConfig, SinkhornCrf, SinkhornResult, sinkhorn_normalize,
11    sinkhorn_normalize_with_margins,
12};