5个版本 (1个稳定版)
1.0.0 | 2020年6月23日 |
---|---|
0.3.0 | 2019年7月28日 |
0.2.1 | 2019年7月10日 |
0.2.0 | 2019年7月7日 |
0.1.0 | 2019年7月6日 |
在机器学习类别中排名第881
每月下载量1,118次
5MB
66K SLoC
BlingFire在Rust中
blingfire
是BlingFire分词库的一个轻量级Rust封装。
将库添加到Cargo.toml
文件中开始使用
cargo add blingfire
库公开了两个函数 text_to_words
和 text_to_sentences
use blingfire;
fn main() {
let mut parsed = String::new();
blingfire::text_to_words("Cat,sat on the mat.", &mut parsed).unwrap();
assert_eq!(parsed.as_str(), "Cat , sat on the mat .");
blingfire::text_to_sentences("Cat sat. Dog barked.", &mut parsed).unwrap();
assert_eq!(parsed.as_str(), "Cat sat.\nDog barked.");
}
代码遵循MIT许可协议。
lib.rs
:
blingfire是BlingFire分词库的一个轻量级Rust封装。