divvunspell 1.0.0-beta.3

Spell checking library for ZHFST/BHFST spellers, with case handling and tokenization support.
Documentation
1
2
3
4
5
6
7
8
#[cfg(feature = "gpt2")]
pub mod gpt2;

use std::sync::Arc;

pub trait Predictor {
    fn predict(self: Arc<Self>, raw_input: &str) -> Vec<String>;
}