You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Search for "Text Normalization"(TN) on Google and Github, you can hardly find open-source projects that are "read-to-use" for text normalization tasks. Instead, you find a bunch of NLP toolkits or frameworks that supports TN functionality. There is quite some work between "support text normalization" and "do text normalization".
Reason
TN is language-dependent, more or less.
Some of TN processing methods are shared across languages, but a good TN module always involves language-specific knowledge and treatments, more or less.
TN is task-specific.
Even for the same language, different applications require quite different TN.
TN is "dirty"
Constructing and maintaining a set of TN rewrite-rules is painful, whatever toolkits and frameworks you choose. Subtle and intrinsic complexities hide inside TN task itself, not in tools or frameworks.
mature TN module is an asset
Since constructing and maintaining TN is hard, it is actually an asset for commercial companies, hence it is unlikely to find a product-level TN in open-source community (correct me if you find any)
TN is a less important topic for either academic or commercials.
Goal
This project sets up a ready-to-use TN module for Chinese. Since my background is speech processing, this project should be able to handle most common TN tasks, in Chinese ASR text processing pipelines.
For English, it removes Python's string.punctuation
multilingual English word upper/lower case conversion
since ASR/TTS lexicons usually unify English entries to uppercase or lowercase, the TN module should adapt with lexicon accordingly.
TN will skip first column key section, normalize latter transcription text
pass --format ark option to switch to kaldi ark format.
table format(.tsv)
ID AUDIO TEXT
UTT01 audio/UTT01.wav 今晚8点整中央5播出2020年总决赛
...
pass --format tsv option, normalization will apply to TEXT field only.
note: All input text should be UTF-8 encoded.
Run examples
TN (python)
make sure you have python3, python2.X won't work correctly.
sh run.sh in TN dir, and compare raw text and normalized text.
ITN (thrax)
make sure you have thrax installed, and your PATH should be able to find thrax binaries.
sh run.sh in ITN dir. check Makefile for grammar dependency.
possible future work
Since TN is a typical "done is better than perfect" module in context of ASR, and the current state is sufficient for my purpose, I probably won't update this repo frequently.
there are indeed something that needs to be improved:
For TN, NSW normalizers in TN dir are based on regular expression, I've found some unintended matches, those pattern regexps need to be refined for more precise TN coverage.
For ITN, extend those thrax rewriting grammars to cover more scenarios.
Further more, nowadays commercial systems start to introduce RNN-like models into TN, and a mix of (rule-based & model-based) system is state-of-the-art. More readings about this, look for Richard Sproat and KyleGorman's work at Google.