-
Notifications
You must be signed in to change notification settings - Fork 0
/
example.go
83 lines (66 loc) · 1.69 KB
/
example.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
package main
import (
"fmt"
"github.com/botviet/vibo/chatbot/nlp"
"github.com/botviet/vibo/utility"
)
func main() {
// transform()
// spellCorrect()
// similarity()
tokenize()
}
func tokenize() {
var dic nlp.Dictionary
dic.DefaultLoad()
words, cant := dic.WordTokenize([]string{"ngày mai Hà nội có mưa không"})
for typ, w := range words {
fmt.Println(typ, w)
}
if len(cant) > 0 {
fmt.Println("Can't Readable")
for _, w := range cant {
fmt.Println(w)
}
}
/*
output:
ngày mai [date]
Hà nội [location_vietnam]
có mưa [weather]
không [word_common]
*/
}
func similarity() {
var dic nlp.Dictionary
dic.DefaultLoad()
score, _ := dic.Similarity("mai mưa không", "ngày mai trời mưa không nhỉ")
fmt.Println(score)
// output: 0.640367228946234
score, _ = dic.Similarity("tôi hàng ngày đều dắt chó đi dạo", "đi dạo với chó thú lắm")
fmt.Println(score)
// output: 0.5133125853160265
}
func spellCorrect() {
var dic nlp.Dictionary
dic.DefaultLoad()
fmt.Println(dic.Correction("lam", []string{"gì"}, []string{"đang"}))
fmt.Println(dic.Correction("an", []string{"cơm"}, []string{"đi"}))
fmt.Println(dic.Correction("oi", []string{"bạn"}, []string{}))
fmt.Println(dic.Correction("1nghienga", []string{"ngả"}, []string{"đi"}))
fmt.Println(dic.Correction("chan", []string{"quá", "đi"}, []string{"haizz"}))
fmt.Println(dic.Correction("di", []string{"chơi", "không"}, []string{"ê"}))
/*
output:
làm
ăn
ơi
nghiêng
chán
đi
*/
}
func transform() {
fmt.Println(utility.Transform("nghiêng", utility.UNICODE, utility.VIQR))
fmt.Println(utility.Transform("ngu+o+`i", utility.VIQR, utility.UNICODE))
}