1 个不稳定版本

0.1.0 2021年7月3日

#1357 in 文本处理

MIT 许可证

9KB
126

mul

用Rust编写的孟加拉语词干提取器。

mul 目前实现了逐步移除孟加拉语单词屈折的步骤方法 1

示例

use mul::noun_stemmer;

fn main() {
    assert_eq!(noun_stemmer("বাংলায়"), "বাংলা");
    assert_eq!(noun_stemmer("মানুষকে"), "মানুষ");
}

参考资料

  1. M. R. Mahmud, M. Afrin, M. A. Razzaque, E. Miller and J. Iwashige, "A rule based bengali stemmer," 2014 International Conference on Advances in Computing, Communications and Informatics (ICACCI), 2014, pp. 2750-2756, doi: 10.1109/ICACCI.2014.6968484.

lib.rs:

孟加拉语词干提取器

mul 目前实现了逐步移除孟加拉语单词屈折的步骤方法 1

示例

use mul::noun_stemmer;

fn main() {
    assert_eq!(noun_stemmer("বাংলায়"), "বাংলা");
    assert_eq!(noun_stemmer("মানুষকে"), "মানুষ");
}

参考资料

  1. M. R. Mahmud, M. Afrin, M. A. Razzaque, E. Miller and J. Iwashige, "A rule based bengali stemmer," 2014 International Conference on Advances in Computing, Communications and Informatics (ICACCI), 2014, pp. 2750-2756, doi: 10.1109/ICACCI.2014.6968484.

无运行时依赖