mirror of https://github.com/coqui-ai/TTS.git
cleaners: expand english time
This commit is contained in:
parent
76138687d3
commit
6646682650
|
@ -14,6 +14,7 @@ import re
|
||||||
from unidecode import unidecode
|
from unidecode import unidecode
|
||||||
from .number_norm import normalize_numbers
|
from .number_norm import normalize_numbers
|
||||||
from .abbreviations import abbreviations_en, abbreviations_fr
|
from .abbreviations import abbreviations_en, abbreviations_fr
|
||||||
|
from .time import expand_time_english
|
||||||
|
|
||||||
# Regular expression matching whitespace:
|
# Regular expression matching whitespace:
|
||||||
_whitespace_re = re.compile(r'\s+')
|
_whitespace_re = re.compile(r'\s+')
|
||||||
|
@ -95,6 +96,7 @@ def english_cleaners(text):
|
||||||
'''Pipeline for English text, including number and abbreviation expansion.'''
|
'''Pipeline for English text, including number and abbreviation expansion.'''
|
||||||
text = convert_to_ascii(text)
|
text = convert_to_ascii(text)
|
||||||
text = lowercase(text)
|
text = lowercase(text)
|
||||||
|
text = expand_time_english(text)
|
||||||
text = expand_numbers(text)
|
text = expand_numbers(text)
|
||||||
text = expand_abbreviations(text)
|
text = expand_abbreviations(text)
|
||||||
text = replace_symbols(text)
|
text = replace_symbols(text)
|
||||||
|
|
|
@ -0,0 +1,44 @@
|
||||||
|
import re
|
||||||
|
import inflect
|
||||||
|
|
||||||
|
_inflect = inflect.engine()
|
||||||
|
|
||||||
|
_time_re = re.compile(r"""\b
|
||||||
|
((0?[0-9])|(1[0-1])|(1[2-9])|(2[0-3])) # hours
|
||||||
|
:
|
||||||
|
([0-5][0-9]) # minutes
|
||||||
|
\s*(a\\.m\\.|am|pm|p\\.m\\.|a\\.m|p\\.m)? # am/pm
|
||||||
|
\b""",
|
||||||
|
re.IGNORECASE | re.X)
|
||||||
|
|
||||||
|
|
||||||
|
def _expand_num(n: int) -> str:
|
||||||
|
return _inflect.number_to_words(n)
|
||||||
|
|
||||||
|
|
||||||
|
def _expand_time_english(match: "re.Match") -> str:
|
||||||
|
hour = int(match.group(1))
|
||||||
|
past_noon = hour >= 12
|
||||||
|
time = []
|
||||||
|
if hour > 12:
|
||||||
|
hour -= 12
|
||||||
|
elif hour == 0:
|
||||||
|
hour = 12
|
||||||
|
past_noon = True
|
||||||
|
time.append(_expand_num(hour))
|
||||||
|
|
||||||
|
minute = int(match.group(6))
|
||||||
|
if minute > 0:
|
||||||
|
if minute < 10:
|
||||||
|
time.append("oh")
|
||||||
|
time.append(_expand_num(minute))
|
||||||
|
am_pm = match.group(7)
|
||||||
|
if am_pm is None:
|
||||||
|
time.append("p m" if past_noon else "a m")
|
||||||
|
else:
|
||||||
|
time.extend(list(am_pm.replace(".", "")))
|
||||||
|
return " ".join(time)
|
||||||
|
|
||||||
|
|
||||||
|
def expand_time_english(text: str) -> str:
|
||||||
|
return re.sub(_time_re, _expand_time_english, text)
|
Loading…
Reference in New Issue