An open API service indexing awesome lists of open source software.

https://github.com/congnghia0609/ntc-vntok

ntc-vntok is a library Tokenizer for the Vietnamese language
https://github.com/congnghia0609/ntc-vntok

nlp ntc-vntok segmentation tokenizer vietnamese

Last synced: 7 months ago
JSON representation

ntc-vntok is a library Tokenizer for the Vietnamese language

Awesome Lists containing this project

README

          

# ntc-vntok
ntc-vntok is a library Tokenizer for the Vietnamese language.

## Maven
```Xml

com.streetcodevn
ntc-vntok
1.0.0

```

## Quick start
```java
String s = "VNTok là công cụ tách từ Tiếng Việt.";
System.out.println(s);
VnTok vntok = new VnTok();
String rs = vntok.tokenizeSentence(s);
System.out.println(rs);
//VNTok là công_cụ tách từ Tiếng_Việt .
```

## License
This code is under the [Apache License v2](https://www.apache.org/licenses/LICENSE-2.0).