We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 35c5364 commit 723b404Copy full SHA for 723b404
README.md
@@ -32,10 +32,17 @@ use crfs:Model;
32
33
fn main() {
34
let buf = fs::read("src/crf_ner_10000.crfsuite").unwrap();
35
- let model = Model(&buf).unwrap();
+ let model = Model::new(&buf).unwrap();
36
let input_str = "ឃាត់ខ្លួនជនសង្ស័យ០៤នាក់ Hello, world ករណីលួចខ្សែភ្លើង នៅស្រុកព្រៃនប់។".to_string();
37
for token in khmercut::tokenize(&model, &input_str) {
38
print!("{}|", token);
39
}
40
41
-```
+```
42
+
43
+---
44
45
+## References
46
47
+- [VietHoang1512/khmer-nltk/](https://github.com/VietHoang1512/khmer-nltk/) Khmer Natural Language Processing Tookit, Phan Viet Hoang (2020)
48
+- [seanghay/khmercut](https://github.com/seanghay/khmercut) A (fast) Khmer word segmentation toolkit.
0 commit comments