spaCy/spacy/lang/id/lex_attrs.py

42 lines
1.5 KiB
Python
Raw Normal View History

2017-07-23 18:55:22 +03:00
# coding: utf8
from __future__ import unicode_literals
2017-07-29 13:22:21 +03:00
from ...attrs import LIKE_NUM
_num_words = ['zero', 'one', 'two', 'three', 'four', 'five', 'six', 'seven',
'eight', 'nine', 'ten', 'eleven', 'twelve', 'thirteen', 'fourteen',
'fifteen', 'sixteen', 'seventeen', 'eighteen', 'nineteen', 'twenty',
'thirty', 'forty', 'fifty', 'sixty', 'seventy', 'eighty', 'ninety',
'hundred', 'thousand', 'million', 'billion', 'trillion', 'quadrillion',
'gajillion', 'bazillion',
'nol', 'satu', 'dua', 'tiga', 'empat', 'lima', 'enam', 'tujuh',
'delapan', 'sembilan', 'sepuluh', 'sebelas', 'duabelas', 'tigabelas',
'empatbelas', 'limabelas', 'enambelas', 'tujuhbelas', 'delapanbelas',
'sembilanbelas', 'duapuluh', 'seratus', 'seribu', 'sejuta',
'ribu', 'rb', 'juta', 'jt', 'miliar', 'biliun', 'triliun',
'kuadriliun', 'kuintiliun', 'sekstiliun', 'septiliun', 'oktiliun',
2017-10-11 03:22:49 +03:00
'noniliun', 'desiliun']
2017-07-29 13:22:21 +03:00
def like_num(text):
text = text.replace(',', '').replace('.', '')
if text.isdigit():
return True
if text.count('/') == 1:
num, denom = text.split('/')
if num.isdigit() and denom.isdigit():
return True
if text in _num_words:
return True
if text.count('-') == 1:
2017-07-29 13:44:46 +03:00
_, num = text.split('-')
if num.isdigit() or num in _num_words:
2017-07-29 13:22:21 +03:00
return True
return False
LEX_ATTRS = {
LIKE_NUM: like_num
}