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

Download history 545/week @ 2023-11-20 516/week @ 2023-11-27 429/week @ 2023-12-04 308/week @ 2023-12-11 213/week @ 2023-12-18 107/week @ 2023-12-25 289/week @ 2024-01-01 455/week @ 2024-01-08 385/week @ 2024-01-15 398/week @ 2024-01-22 475/week @ 2024-01-29 434/week @ 2024-02-05 346/week @ 2024-02-12 258/week @ 2024-02-19 260/week @ 2024-02-26 244/week @ 2024-03-04

每月下载量1,118

MIT许可协议

5MB
66K SLoC

C++ 66K SLoC // 0.0% comments Rust 229 SLoC // 0.0% comments Jupyter Notebooks 120 SLoC // 0.2% comments

Build Status Documentation

BlingFire在Rust中

blingfireBlingFire分词库的一个轻量级Rust封装。

将库添加到Cargo.toml文件中开始使用

cargo add blingfire

库公开了两个函数 text_to_wordstext_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封装。

依赖项