forked from ckmarkoh/deepSeg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeepseg_util.py
56 lines (45 loc) · 1.34 KB
/
deepseg_util.py
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
# -*- encoding:utf-8 -*-
import json
import re
import logging
NUM_LIST = [
u"0", u"1", u"2", u"3", u"4", u"5", u"6", u"7", u"8", u"9"
]
ENG_LIST = [
u"A", u"B", u"C", u"D", u"E", u"F", u"G", u"H", u"I", u"J",
u"K", u"L", u"M", u"N", u"O", u"P", u"Q", u"R", u"S", u"T",
u"U", u"V", u"W", u"X", u"Y", u"Z", u"a", u"b", u"c", u"d",
u"e", u"f", u"g", u"h", u"i", u"j", u"k", u"l", u"m", u"n",
u"o", u"p", u"q", u"r", u"s", u"t", u"u", u"v", u"w", u"x",
u"y", u"z"
]
def read_file_line(fname, toprint=False):
f = open(fname, "r")
i = 0
while True:
line = f.readline()
i += 1
if toprint:
print(i)
if len(line) == 0:
break
yield line
f.close()
def read_json(json_fname):
f = open(json_fname, "r")
json_item = json.loads("".join(f.readlines()))
f.close()
return json_item
def tagDigitEn(w):
if w.isdigit() or w in NUM_LIST:
return u"$NUM$"
elif len(re.findall(r"[A-Za-z]", w)) > 0 or w in ENG_LIST:
return u"$EN$"
else:
return w
def get_widx(w, word_dict):
w_idx = word_dict.get(tagDigitEn(w), -1)
if w_idx != -1:
return w_idx
else:
return word_dict.get("OOV")