forked from yanyiwu/gojieba
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.go
45 lines (39 loc) · 947 Bytes
/
config.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
package gojieba
import (
"path"
"runtime"
)
var (
DICT_DIR string
DICT_PATH string
HMM_PATH string
USER_DICT_PATH string
IDF_PATH string
STOP_WORDS_PATH string
)
func init() {
DICT_DIR = path.Join(path.Dir(getCurrentFilePath()), "dict")
DICT_PATH = path.Join(DICT_DIR, "jieba.dict.utf8")
HMM_PATH = path.Join(DICT_DIR, "hmm_model.utf8")
USER_DICT_PATH = path.Join(DICT_DIR, "user.dict.utf8")
IDF_PATH = path.Join(DICT_DIR, "idf.utf8")
STOP_WORDS_PATH = path.Join(DICT_DIR, "stop_words.utf8")
}
const TOTAL_DICT_PATH_NUMBER = 5
func getDictPaths(args ...string) [TOTAL_DICT_PATH_NUMBER]string {
dicts := [TOTAL_DICT_PATH_NUMBER]string{
DICT_PATH,
HMM_PATH,
USER_DICT_PATH,
IDF_PATH,
STOP_WORDS_PATH,
}
for i := 0; i < len(args) && i < len(dicts); i++ {
dicts[i] = args[i]
}
return dicts
}
func getCurrentFilePath() string {
_, filePath, _, _ := runtime.Caller(1)
return filePath
}