libgrammstein 0.1.0

Hybrid language model (N-gram + Embeddings) for WFST text correction
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! CLI module for the grammstein command-line tool.
//!
//! Provides subcommands for training, evaluating, and querying language models.

pub mod args;
pub mod checkpoint;
pub mod commands;
pub mod error;
pub mod output;
pub mod progress;

#[cfg(feature = "google-books")]
pub mod tui;

pub use args::{Cli, Commands};
pub use checkpoint::CheckpointManager;
pub use error::{CliError, CliResult};