import pynini
|
from fun_text_processing.text_normalization.zh.graph_utils import (
|
FUN_CHAR,
|
FUN_DIGIT,
|
GraphFst,
|
insert_space,
|
)
|
from fun_text_processing.text_normalization.zh.utils import get_abs_path
|
from pynini.lib import pynutil
|
|
|
class Date(GraphFst):
|
"""
|
2002年 -> tokens { date { year: "2002" } }
|
2002-01-28 -> tokens { date { year: "2002" month: "01" day: "28"} }
|
2002/01/28 -> tokens { date { year: "2002" month: "01" day: "28"} }
|
2002.01.28 -> tokens { date { year: "2002" month: "01" day: "28"} }
|
2002/02 -> tokens { date { year: "2002" month "02"} }
|
02/11 -> tokens { date { year: "02" month "11"} } different with case "fraction 2/11"
|
"""
|
|
def __init__(self, deterministic: bool = True, lm: bool = False):
|
super().__init__(name="date", kind="classify", deterministic=deterministic)
|
graph_digit = pynini.string_file(get_abs_path("data/number/digit.tsv"))
|
graph_zero = pynini.string_file(get_abs_path("data/number/zero.tsv"))
|
year_whitelist = pynini.string_file(get_abs_path("data/date/year_suffix.tsv"))
|
|
delete_date_sign = pynutil.delete("/") | pynutil.delete("-") | pynutil.delete(".")
|
|
# 2012年
|
date_type0 = (
|
pynutil.insert('year: "')
|
+ pynini.closure(graph_digit | graph_zero, 2, 4)
|
+ "年"
|
+ pynini.difference(FUN_CHAR, year_whitelist)
|
+ pynutil.insert('"')
|
)
|
|
year_2_4_digit = pynini.closure(FUN_DIGIT, 2, 4) + delete_date_sign
|
year_4_digit = pynini.closure(FUN_DIGIT, 4, 4) + delete_date_sign
|
year_2_digit_with_zero = "0" + FUN_DIGIT + delete_date_sign
|
month_no_day_with_zero = "0" + FUN_DIGIT
|
month_no_day = pynini.closure(FUN_DIGIT, 2, 2)
|
month = pynini.closure(FUN_DIGIT, 1, 2) + delete_date_sign
|
day = pynini.closure(FUN_DIGIT, 1, 2)
|
|
# 2012/01/28
|
date_type1 = (
|
pynutil.insert('year: "')
|
+ year_2_4_digit
|
+ pynutil.insert('"')
|
+ insert_space
|
+ pynutil.insert('month: "')
|
+ month
|
+ pynutil.insert('"')
|
+ insert_space
|
+ pynutil.insert('day: "')
|
+ day
|
+ pynutil.insert('"')
|
)
|
|
# 12/01
|
date_type2 = (
|
pynutil.insert('year: "')
|
+ year_2_4_digit
|
+ pynutil.insert('"')
|
+ insert_space
|
+ pynutil.insert('month: "')
|
+ month_no_day_with_zero
|
+ pynutil.insert('"')
|
)
|
|
# 2012/11
|
date_type3 = (
|
pynutil.insert('year: "')
|
+ year_4_digit
|
+ pynutil.insert('"')
|
+ insert_space
|
+ pynutil.insert('month: "')
|
+ month_no_day
|
+ pynutil.insert('"')
|
)
|
|
# 02/05
|
date_type4 = (
|
pynutil.insert('year: "')
|
+ year_2_digit_with_zero
|
+ pynutil.insert('"')
|
+ insert_space
|
+ pynutil.insert('month: "')
|
+ month_no_day
|
+ pynutil.insert('"')
|
)
|
# add your date type as date_typex here.
|
graph = date_type0 | date_type1 | date_type2 | date_type3 | date_type4
|
|
self.fst = self.add_tokens(graph).optimize()
|