WFST-based Inverse Text Normalization (ITN) for Ukrainian, built on NVIDIA NeMo grammars and Pynini.
Supported semiotic classes: cardinal, ordinal, decimal, fraction, measure, money, date, time,
telephone, electronic (e-mail/URL), century (Roman numerals), number sign (№), ranges
(numeric/time/date), durations & half-quantities, decades, legal references, scores,
versions, IPv4, postal codes, street addresses.
Also supports high-priority spoken abbreviations and time day-period/time-zone forms.
Punctuation-aware (built for ASR output): "сто гривень, будь ласка!" -> ₴100, будь ласка!,
"нуль шістдесят сім, сто двадцять три, сорок п'ять, шістдесят сім" -> 0671234567
Common Ukrainian apostrophes (', ’, ʼ) and uppercase ASR/text input are accepted
without changing the spelling or case of ordinary words.
brew install openfst # needed to build pynini
export CPLUS_INCLUDE_PATH="/opt/homebrew/include:$CPLUS_INCLUDE_PATH"
export LIBRARY_PATH="/opt/homebrew/lib:$LIBRARY_PATH"
uv syncfrom ukr import normalize
normalize("це трапилося дві тисячі дев'ятнадцятого числа") # це трапилося 2019-го числа
normalize("мінус п'ять цілих одна десята відсотка") # -5.1 %
normalize("двадцять дві тисячі сто один") # 22101
normalize("сьома година двадцять п'ять хвилин") # 07:25
normalize("МІНУС П’ЯТЬ ГРИВЕНЬ") # -₴5
normalize("третя година дня за київським часом") # 15:00 Europe/Kyiv
normalize("підключи ю ес бі та вай фай") # підключи USB та Wi-FiThe grammars are built lazily on the first call (several seconds) and cached for the
lifetime of the process; subsequent calls take milliseconds. normalize is thread-safe.
echo "це трапилося дві тисячі дев'ятнадцятого числа" | python -m ukr
# or, after `pip install ukr_itn`:
echo "це трапилося дві тисячі дев'ятнадцятого числа" | ukr-itnOptions:
-h, --help Show this help message and exit
-j, --json Return result as JSON
-v, --verbose Print original input and normalized to compare
--version Show version
Will return це трапилося 2019-го числа. Lines the grammar cannot parse are reported to
stderr and skipped (exit code 1).
For more advanced usage you can get json output
from ukr import normalize
normalize("це трапилося дві тисячі дев'ятнадцятого числа", json=True)
# >>> '[{"word": "це"}, {"word": "трапилося"}, {"ordinal": "2019"}, {"word": "числа"}]'The returned string is guaranteed to be valid JSON, including when pass-through tokens contain quotes, backslashes, control characters, or non-BMP Unicode.
The compiled grammars can be exported and used from C++ with plain OpenFST (no Python at runtime):
uv run python -m ukr.export grammars_export
cmake -B cpp/build -S cpp && cmake --build cpp/build
ctest --test-dir cpp/build --output-on-failure
echo "двадцять дві тисячі сто один" | ./cpp/build/ukr_itn_cli grammars_export # 22101See cpp/README.md for the library API.
We have two kinds of FST: taggers and verbalizers.
This is a tagger:
from ukr.wfst import get_normalizer, apply_fst_text
apply_fst_text("мінус п'ять цілих одна десята відсотка", get_normalizer().classify.fst)will return tokens { measure { negative: "true" integer_part: "5" fractional_part: "1" units: "%" } }
And this is a verbalizer:
from ukr.wfst import get_normalizer, apply_fst_text
apply_fst_text('tokens { measure { negative: "true" integer_part: "5" fractional_part: "1" units: "%" } }',
get_normalizer().verbalize_final.fst)will return -5.1 %
uv sync # install deps (dev group included)
uv run pytest # run tests
uv run ruff check . # lint
uv build # build sdist + wheel