libgrammstein 0.1.0

Hybrid language model (N-gram + Embeddings) for WFST text correction
1
2
3
4
5
6
7
8
//! Smoothing algorithms for n-gram probability estimation.
//!
//! This module provides smoothing techniques to handle unseen n-grams
//! and improve probability estimates for rare n-grams.

mod kneser_ney;

pub use kneser_ney::KneserNeySmoothing;