forked from sp1007/FastSpeech2_vi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnumbers_vi.py
355 lines (323 loc) · 13.1 KB
/
numbers_vi.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
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
"""
Created by Son Pham
Email: [email protected]
Licsence: MIT license
"""
import re
# định nghĩa các yếu tố cấn thiết
_UNITS = [ "mươi", "trăm", "nghìn", "mươi", "trăm", "triệu", "mươi", "trăm", "tỷ" ]
_LETTERS = {"0":"không", "1":"một", "2":"hai", "3":"ba", "4":"bốn", "5":"năm", "6":"sáu", "7":"bảy", "8":"tám", "9":"chín"}
_comma_number_re = re.compile(r'([0-9][0-9\.]+[0-9])')
_full_date_re = re.compile(r'(\d{1,2})/(\d{1,2})/(\d{1,4})')
_short_date_re = re.compile(r'(\d{1,2})/(\d{1,2})')
_full_time_re = re.compile(r'(\d+):(\d{1,2}):(\d+(?:,\d+)?)')
_short_time1_re = re.compile(r'(\d+):(\d{1,2})')
_short_time2_re = re.compile(r'(\d+)h(\d{1,2})')
_general_number_re = re.compile(r'(-?\+?\d+(?:,\d+)?e?\d*(?:,\d+)?)(kg/m3|rad/s|km/h|l/km|m3/s|w/m2|m/s|vnd|rad|mol|km|kg|kb|mb|gb|tb|°c|ºc|°k|ºk|mg|mm|cm|dm|ma|hz|mw|kw|kj|tj|kv|lm|pa|va|m2|m3|kω|mω|ev|d|m|g|k|b|s|a|w|j|v|f|n|l|h|ω|t|°|º|%)?')
_roman_re = re.compile(r'\b(?=[MDCLXVI]+\b)M{0,4}(CM|CD|D?C{0,3})(XC|XL|L?X{0,3})(IX|IV|V?I{0,3})\b')
_coner_re = re.compile(r'(\d+)°(\d+)′(\d+(?:,\d+)?)″')
_number_range_re = re.compile(r'(\d+(?:,\d+)?)\s*[-–-]\s*(\d+(?:,\d+)?)')
_whitespace_re = re.compile(r'\s+')
def uintStr2Str(input:str, isSingle=False):
# định nghĩa kết quả trả về
result = ""
# bắt đầu xử lý từng kí tự trong chuỗi
if isinstance(input, str) and len(input)>0:
# nếu chỉ là lấy các chữ số thông thường
if isSingle==True:
for c in input:
if (c in _LETTERS):
result += " " + _LETTERS[c]
else:
result = ""
break
# không thì thực hiện chuyển số sang chữ
else:
# strip leading zero
if (len(input)>1):
input = input.lstrip('0')
# kiểm tra độ dài input sau khi loại trừ số 0 ở đầu chuỗi
if input is None or len(input)==0:
return "không"
# độ dài chuỗi đầu vào
inputLength = len(input)
# đếm kí tự
idx = 0;
for c in input:
if (c in _LETTERS):
#
bilCount = (inputLength - 1 - idx) // 9
# xác định hàng đơn vị
unitIdx = (inputLength - 2 - idx) % len(_UNITS)
if unitIdx < 0:
unitIdx = len(_UNITS) - 1
# chữ số và đơn vị hiện tại
num = _LETTERS[c]
unit = _UNITS[unitIdx]
# xem xét hàng đơn vị trước
if idx == inputLength - 1:
unit = None
if c=='0':
if idx>0:
num = None
elif c == '1':
if idx>0 and input[idx-1] != "1" and input[idx-1] != '0':
num = "mốt"
elif c=='4':
if idx>0 and input[idx-1]!='1' and input[idx-1]!='0': # and input[idx-1]!='2' and input[idx-1]!='4':
num = "tư"
elif c=='5':
if idx>0 and input[idx-1]!='0':
num = "lăm"
# xem xét số tại các vị trí khác
else:
if unitIdx==0 or unitIdx==3 or unitIdx==6:
if c=='0':
if idx+1 < inputLength and input[idx+1]!='0':
num = "linh"
unit = None
else:
num = None
unit = None
elif c=='1':
num = "mười"
unit = None
elif unitIdx==1 or unitIdx==4 or unitIdx==7:
if c=='0' and idx+2<inputLength and input[idx+1]=='0' and input[idx+2]=='0':
num = None
unit = None
elif unitIdx==2 or unitIdx==5 or unitIdx==8:
# sửa đơn vị nghìn/triệu/tỷ tỷ
if bilCount>0 and unitIdx==8 and (idx<2 or input[idx-1]!='0' or input[idx-2]!='0'):
for i in range(0, bilCount -1):
unit += " tỷ"
if idx>0:
if c=='0':
num = None
if unitIdx != 8:
if idx>1 and input[idx-1]=='0' and input[idx-2]=='0':
unit = None
elif c=='1':
if input[idx-1]!='0' and input[idx-1]!='1':
num = "mốt"
elif c=='4':
if input[idx-1]!='0' and input[idx-1]!='1': # and input[idx -1]!='2' and input[idx -1]!='4':
num = "tư"
elif c=='5':
if input[idx-1]!='0':
num = "lăm"
if unit is not None:
pass
# thêm số vào kết quả
if num is not None:
result += " " + num
# thêm đơn vị vào kết quả
if unit is not None:
result += " " + unit;
else:
result = ""
break
# tăng biến đếm
idx +=1
# trả về kết quả
return result.strip()
def floatStr2Str(input:str, dot=",", isPoweredNumber=False):
result = ""
if len(input)>0:
signStr = ""
if input[0]=='-':
if isPoweredNumber==True:
signStr = "trừ "
else:
signStr = "âm "
input = input[1:]
elif input[0]=='+':
signStr = "dương "
input = input[1:]
parts = input.split(dot)
if len(parts)>1:
single = True
if (len(parts[1])<7):
single = False
result = signStr + uintStr2Str(parts[0]) + " phẩy " + uintStr2Str(parts[1], single)
else:
result = signStr + uintStr2Str(parts[0])
return result
def doubleStr2Str(input:str, dot=","):
input = input.lower()
parts = input.split("e")
if (len(parts)>1):
return floatStr2Str(parts[0], dot) + " nhân mười mũ " + floatStr2Str(parts[1], dot, True)
else:
return floatStr2Str(parts[0], dot)
# replace 00/00/0000
def _replace_full_date(m):
return " ngày " + doubleStr2Str(m.group(1)) + " tháng " + doubleStr2Str(m.group(2)) + " năm " + doubleStr2Str(m.group(3)) + " "
# replace 00/00/0000
def _replace_short_date(m):
return " ngày " + doubleStr2Str(m.group(1)) + " tháng " + doubleStr2Str(m.group(2)) + " "
# replace 000:00:00
def _replace_full_time(m):
return " " + doubleStr2Str(m.group(1)) + " giờ " + doubleStr2Str(m.group(2)) + " phút " + doubleStr2Str(m.group(3)) + " giây "
# replace 000:00
def _replace_short_time_1(m):
return " " + doubleStr2Str(m.group(1)) + " giờ " + doubleStr2Str(m.group(2)) + " phút "
# replace 000h00
def _replace_short_time_2(m):
return " " + doubleStr2Str(m.group(1)) + " giờ " + doubleStr2Str(m.group(2)) + " phút "
def _replace_number_range(m):
return " từ " + m.group(1) + " đến " + m.group(2)
def _replace_coner(m):
return " " + doubleStr2Str(m.group(1)) + " độ " + doubleStr2Str(m.group(2)) + " phút " + doubleStr2Str(m.group(3)) + " giây "
def _replace_number(m):
# print(str(len(m.groups())) + ": " + str(m.group(2)))
if (len(m.groups())>1 and m.group(2) is not None):
orgUnit = m.group(2)
unit = "" # vnd|d|m|kg|g|k|b|kb|mb|gb|tb|°c|°k
if orgUnit == 'vnd' or orgUnit == 'd':
unit = 'đồng'
elif orgUnit == 'km':
unit = 'kilô mét'
elif orgUnit == 'm':
unit = 'mét'
elif orgUnit == 'dm':
unit = 'đềxi mét'
elif orgUnit == 'cm':
unit = 'xenti mét'
elif orgUnit == 'mm':
unit = 'mili mét'
elif orgUnit == 'kg':
unit = 'kilô gram'
elif orgUnit == 'g':
unit = 'gram'
elif orgUnit == 'mg':
unit = 'mili gram'
elif orgUnit == 'k':
unit = 'nghìn'
elif orgUnit == 'b':
unit = 'bai'
elif orgUnit == 'kb':
unit = 'kilô bai'
elif orgUnit == 'mb':
unit = 'mêga bai'
elif orgUnit == 'gb':
unit = 'giga bai'
elif orgUnit == 'tb':
unit = 'tera bai'
elif orgUnit == '°c' or orgUnit == 'ºc':
unit = 'độ xê'
elif orgUnit == '°k' or orgUnit == 'ºk':
unit = 'độ kenvin'
elif orgUnit == 's':
unit = 'giây'
elif orgUnit == 'a':
unit = 'ampe'
elif orgUnit == 'ma':
unit = 'mili ampe'
elif orgUnit == 'hz':
unit = 'héc'
elif orgUnit == 'w':
unit = 'oát'
elif orgUnit == 'kw':
unit = 'kilô oát'
elif orgUnit == 'mw':
unit = 'mêga oát'
elif orgUnit == 'j':
unit = 'giun'
elif orgUnit == 'kj':
unit = 'kilô giun'
elif orgUnit == 'tj':
unit = 'tera giun'
elif orgUnit == 'v':
unit = 'vôn'
elif orgUnit == 'kv':
unit = 'kilô vôn'
elif orgUnit == 'lm':
unit = 'lumen'
elif orgUnit == 'pa':
unit = 'pátcan'
elif orgUnit == 'rad':
unit = 'rađian'
elif orgUnit == 'va':
unit = 'vôn ampe'
elif orgUnit == 'km/h':
unit = 'kilô mét trên giờ'
elif orgUnit == 'm/s':
unit = 'mét trên giây'
elif orgUnit == 'f':
unit = 'phara'
elif orgUnit == 'n':
unit = 'niutơn'
elif orgUnit == 'm2':
unit = 'mét vuông'
elif orgUnit == 'm3':
unit = 'mét khối'
elif orgUnit == 'l':
unit = 'lít'
elif orgUnit == 'rad/s':
unit = 'rađian trên giây'
elif orgUnit == 'l/km':
unit = 'lít trên kilômét'
elif orgUnit == 'kg/m3':
unit = 'kilôgram trên mét khối'
elif orgUnit == 'm3/s':
unit = 'mét khối trên giây'
elif orgUnit == 'h':
unit = 'henri'
elif orgUnit == 'w/m2':
unit = 'oát trên mét vuông'
elif orgUnit == 'mol':
unit = 'mon'
elif orgUnit == 'ω':
unit = 'ôm'
elif orgUnit == 'kω':
unit = 'kilô ôm'
elif orgUnit == 'mω':
unit = 'mêga ôm'
elif orgUnit == 't':
unit = 'tấn'
elif orgUnit == '°' or orgUnit=='º':
unit = 'độ'
elif orgUnit == 'ev':
unit = 'êlêctrôn vôn'
elif orgUnit == '%':
unit = 'phần trăm'
return " " + doubleStr2Str(m.group(1)) + " " + unit + " "
else:
return " " + doubleStr2Str(m.group(1)) + " "
def _remove_commas(m):
return m.group(1).replace('.', '')
def _expand_roman(m):
# from https://stackoverflow.com/questions/19308177/converting-roman-numerals-to-integers-in-python
roman_numerals = {'I':1, 'V':5, 'X':10, 'L':50, 'C':100, 'D':500, 'M':1000}
result = 0
num = m.group(0)
for i, c in enumerate(num):
if (i+1) == len(num) or roman_numerals[c] >= roman_numerals[num[i+1]]:
result += roman_numerals[c]
else:
result -= roman_numerals[c]
return str(result)
def normalize_numbers(text:str):
#roman number
text = re.sub(_roman_re, _expand_roman, text)
# range
text = re.sub(_number_range_re, _replace_number_range, text)
# lower
text = text.lower()
# remove comma
text = re.sub(_comma_number_re, _remove_commas, text)
# full date
text = re.sub(_full_date_re, _replace_full_date, text)
text = re.sub(_short_date_re, _replace_short_date, text)
# full time
text = re.sub(_full_time_re, _replace_full_time, text)
# short time
text = re.sub(_short_time1_re, _replace_short_time_1, text)
text = re.sub(_short_time2_re, _replace_short_time_2, text)
# coner
text = re.sub(_coner_re, _replace_coner, text)
# number and unit
text = re.sub(_general_number_re, _replace_number, text)
# return result
return re.sub(_whitespace_re, ' ', text)