Skip to content

Commit ef6824f

Browse files
committed
fix: preserve comma and period in date TN output
- Delete trailing period from date tagger instead of consuming it, so sentence-ending periods are preserved - Preserve comma in MDY date format (e.g. "August 8, 2024" -> "the eighth of august, twenty twenty four") instead of adding extra space before comma - Use cdrewrite to remove space before comma in verbalizer - Update test expectations accordingly
1 parent 57f8585 commit ef6824f

3 files changed

Lines changed: 8 additions & 7 deletions

File tree

tn/english/rules/date.py

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -225,21 +225,21 @@ def build_tagger(self):
225225
cardinal_graph=cardinal_graph,
226226
single_digits_graph=cardinal.single_digits_graph,
227227
)
228-
two_digit_year = pynutil.insert('year: "') + two_digit_year + pynini.union(",", ".").ques + pynutil.insert('"')
228+
two_digit_year = pynutil.insert('year: "') + two_digit_year + pynutil.delete(",").ques + pynutil.insert('"')
229229

230230
graph_year = (
231231
pynutil.insert(' year: "')
232232
+ pynutil.delete(" ")
233233
+ year_graph
234-
+ pynini.union(",", ".").ques
234+
+ pynutil.delete(",").ques
235235
+ pynutil.insert('"')
236236
)
237237
graph_year |= (
238238
pynutil.insert(' year: "')
239-
+ pynini.accep(",")
240-
+ pynini.accep(" ").ques
239+
+ pynini.cross(",", ", ")
240+
+ pynutil.delete(" ").ques
241241
+ year_graph
242-
+ pynini.union(",", ".").ques
242+
+ pynutil.delete(",").ques
243243
+ pynutil.insert('"')
244244
)
245245
optional_graph_year = graph_year.ques
@@ -349,4 +349,5 @@ def build_verbalizer(self):
349349
)
350350

351351
final_graph = (graph_dmy | year | graph_fy) + self.DELETE_SPACE
352+
final_graph = final_graph @ self.build_rule(pynini.cross(" ,", ","))
352353
self.verbalizer = self.delete_tokens(final_graph)

tn/english/test/data/date.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
2024 B.C => twenty twenty four BC
55
1H23 => the first half of twenty three
66
3Q22 => the third quarter of twenty two
7-
jan. 5, 2012 => the fifth of january , twenty twelve
7+
jan. 5, 2012 => the fifth of january, twenty twelve
88
jan. 5 => the fifth of january
99
5 january 2012 => the fifth of january twenty twelve
1010
2012-01-05 => the fifth of january twenty twelve

tn/english/test/data/normalizer.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
this is 12th game, number 256, 2024-05-06, 2021-03-07 31.990 billion. ¾ people like chattts, let's eat at 03:43 p.m. run 10 km, give me $12.345 please, call 123-123-5678-1 Mt Hill "HAHAHA" billion 4 March => this is twelfth game, number two hundred and fifty six, the sixth of may twenty twenty four, the seventh of march twenty twenty one thirty one point nine nine oh billion. three quarters people like chattts, let's eat at three forty three PM run ten kilometers, give me twelve point three four five dollars please, call one two three, one two three, five six seven eight, one Mt Hill "HAHAHA" billion the fourth of march
2-
The National Map, accessed April 1, 2011" Site Description of Koppers Co. From the quartet's recording" Jefferson Friedman: Quartets,"" String Quartet no, Riots again broke out, Atassi resigned, and Syrian independence was deferred until after World War II. 1988 (1988) ( 1988) ( 1988). Starling, Arthur E.( 1988 ). this is 12th game, number 256, 2024-05-06, 2021-03-07 31.990 billion. 3/4 people like chattts Retrieved December 2011. Information on Album" Thepodule.com"" Biography by Amy Hanson". => The National Map, accessed the first of april , twenty eleven" Site Description of Koppers company From the quartet's recording" Jefferson Friedman: Quartets,"" String Quartet no, Riots again broke out, Atassi resigned, and Syrian independence was deferred until after World War two nineteen eighty eight (nineteen eighty eight) ( nineteen eighty eight) ( nineteen eighty eight). Starling, Arthur E.( nineteen eighty eight ). this is twelfth game, number two fifty six, the sixth of may twenty twenty four, the seventh of march twenty twenty one thirty one point nine nine oh billion. three quarters people like chattts Retrieved december twenty eleven. Information on Album" Thepodule dot com"" Biography by Amy Hanson".
2+
The National Map, accessed April 1, 2011" Site Description of Koppers Co. From the quartet's recording" Jefferson Friedman: Quartets,"" String Quartet no, Riots again broke out, Atassi resigned, and Syrian independence was deferred until after World War II. 1988 (1988) ( 1988) ( 1988). Starling, Arthur E.( 1988 ). this is 12th game, number 256, 2024-05-06, 2021-03-07 31.990 billion. 3/4 people like chattts Retrieved December 2011. Information on Album" Thepodule.com"" Biography by Amy Hanson". => The National Map, accessed the first of april, twenty eleven" Site Description of Koppers company From the quartet's recording" Jefferson Friedman: Quartets,"" String Quartet no, Riots again broke out, Atassi resigned, and Syrian independence was deferred until after World War two nineteen eighty eight (nineteen eighty eight) ( nineteen eighty eight) ( nineteen eighty eight). Starling, Arthur E.( nineteen eighty eight ). this is twelfth game, number two fifty six, the sixth of may twenty twenty four, the seventh of march twenty twenty one thirty one point nine nine oh billion. three quarters people like chattts Retrieved december twenty eleven. Information on Album" Thepodule dot com"" Biography by Amy Hanson".
33
.345" and ".456" "9.456" or 6.7890" => point three four five" and ".four hundred and fifty six" "nine point four five six" or six point seven eight nine oh"
44
The museum is open Mon.-Sun. children of 3-4 years 123 The plan will help you lose 3-4 pounds the first week, and 1-2 pounds the weeks thereafter. => The museum is open Monday to Sunday children of three to four years one hundred and twenty three The plan will help you lose three to four pounds the first week, and one to two pounds the weeks thereafter.
55
Try searching for 'Toyota' or 'Investment' => Try searching for 'Toyota' or 'Investment'

0 commit comments

Comments
 (0)