vn-nlp-core 0.1.3

Core types, traits, and errors for vn-nlp
Documentation
1
2
3
4
5
6
7
8
9
10
#![forbid(unsafe_code)]
#![doc = "Core types, traits, and errors for the vn-nlp ecosystem."]

pub mod error;
pub mod traits;
pub mod types;

pub use error::VnNlpError;
pub use traits::{Normalizer, Segmenter, Tokenizer};
pub use types::{Sentence, Span, Token, TokenKind};