#nlp #japanese #tokenizer #ngrams

tiniestsegmenter

Compact Japanese segmenter

3 releases (breaking)

0.3.0 Sep 24, 2024
0.2.0 Jun 24, 2024
0.1.1 May 11, 2024
0.1.0 May 11, 2024

#1296 in Text processing

Custom license

58KB
2K SLoC

TiniestSegmenter

A port of TinySegmenter written in pure, safe rust with no dependencies. You can find bindings for both Rust and Python.

TinySegmenter is an n-gram word tokenizer for Japanese text originally built by Taku Kudo (2008).

Usage

Add the crate to your project: cargo add tiniestsegmenter.

use tiniestsegmenter as ts;

fn main() {
    let tokens: Vec<&str> = ts::tokenize("ジャガイモが好きです。");
}

No runtime deps