Skip to main content

Deterministic Khmer word segmentation with experimental hyphenation

Project description

Khmer Segmenter

A deterministic, dictionary-based Khmer word segmenter for NLP preprocessing, search, formal documents, and embedded applications. It combines Khmer Unicode normalization, frequency-weighted Viterbi decoding, linguistic rules, and unknown-word recovery without a runtime machine-learning model.

Documentation · Data preparation · C port · Rust port · Live demo

[!IMPORTANT] The package includes an attributed Khmer dictionary and derived runtime data for noncommercial use. Project code is MIT licensed; the bundled linguistic data has separate terms in DATA_LICENSE.md.

[!WARNING] Hyphenation is experimental. Its dictionary and rules are still being refined, and many words do not yet receive correct internal break positions. Do not rely on hyphenation output for production typography without review.

Features

  • Deterministic segmentation for the same code and local data
  • Khmer Unicode normalization
  • Frequency-weighted dictionary decisions
  • Unknown-span preservation
  • Typed token metadata with offsets and lexical POS candidates
  • Experimental Khmer hyphenation
  • Python API and khmer-segment CLI
  • Shared KDIC/KHYP formats for C and Rust applications

This is a lexical segmenter, not a semantic parser or contextual POS tagger. pos_candidates are possibilities found in optional local lexical data.

Install for development

Python 3.10 or newer is required.

git clone https://github.com/Sovichea/khmer_segmenter.git
cd khmer_segmenter
python -m venv .venv

Activate the environment and install the src-layout package:

# Linux/macOS
source .venv/bin/activate
python -m pip install -e .
# Windows PowerShell
.venv\Scripts\Activate.ps1
python -m pip install -e .

After its first release, the distribution will install with:

pip install khmer-viterbi-segmenter

The import package remains khmer_segmenter. The bundled runtime data works immediately; no separate download is required.

Dictionary source and optional replacement

The original dictionary is published by Seanghay Hay (seanghay) on Hugging Face and was extracted from the Khmer Dictionary 2022 of the National Council of Khmer Language, Royal Academy of Cambodia:

https://huggingface.co/datasets/seanghay/khmer-dictionary-44k

The dataset may be redistributed for noncommercial use with attribution. The bundled normalized dictionary, frequencies, lexical POS candidates, and hyphenation pairs retain that credit and restriction. See the linguistic data notice.

Developers who want to rebuild or replace the bundled data can download pairs.tsv directly from the original publisher:

mkdir -p dataset
curl -L \
  "https://huggingface.co/datasets/seanghay/khmer-dictionary-44k/resolve/main/pairs.tsv?download=true" \
  -o dataset/rac_dictionary_2022_pairs.tsv

Windows PowerShell:

New-Item -ItemType Directory -Force dataset | Out-Null
Invoke-WebRequest `
  -Uri "https://huggingface.co/datasets/seanghay/khmer-dictionary-44k/resolve/main/pairs.tsv?download=true" `
  -OutFile "dataset/rac_dictionary_2022_pairs.tsv"

Generate an optional local runtime dictionary override:

khmer-segment data prepare \
  --rac-tsv dataset/rac_dictionary_2022_pairs.tsv

When working from a repository clone, the wrapper below also copies the local text dictionary to port/common/ for native development:

python scripts/sync_rac_dictionary.py \
  --rac-tsv dataset/rac_dictionary_2022_pairs.tsv

The Python resolver checks these locations in order:

  1. data_dir= or CLI --data-dir
  2. KHMER_SEGMENTER_DATA_DIR
  3. The user data directory for the operating system
  4. The data bundled with the installed package
  5. khmer_segmenter/dictionary_data/ in a development checkout

Check the resolved files:

khmer-segment data status
khmer-segment data sources
khmer-segment data prepare --rac-tsv dataset/rac_dictionary_2022_pairs.tsv

See Prepare Dictionaries for Python, C, and Rust for frequency generation and KDIC/KHYP compilation.

Python API

from khmer_segmenter import KhmerSegmenter

segmenter = KhmerSegmenter()

tokens = segmenter.segment("ខ្ញុំស្រឡាញ់ប្រទេសកម្ពុជា")
print(tokens)

To use a replacement dictionary, set KHMER_SEGMENTER_DATA_DIR or pass data_dir= explicitly:

segmenter = KhmerSegmenter(data_dir="/path/to/replacement-data")

Typed analysis results include normalized offsets and optional lexical data:

for token in segmenter.analyze("ខ្ញុំសរសេរឯកសារ"):
    print(token.text, token.start, token.end, token.known)
    print(token.frequency, token.pos_candidates)

The legacy dictionary result remains available as segment_with_metadata(text).

Experimental hyphenation uses the bundled pairs by default. Many words are not yet separated correctly, so applications should treat its output as a suggestion and review it before display or publication:

from khmer_segmenter import KhmerHyphenator

hyphenator = KhmerHyphenator.from_data_dir()
result = hyphenator.hyphenate(
    "សហប្រតិបត្តិការ",
    segmenter=segmenter,
    separator="-",  # use "\u200b" for invisible break opportunities
)

CLI

Segment positional text, a file, or standard input:

khmer-segment segment "ខ្ញុំស្រឡាញ់ប្រទេសកម្ពុជា"
khmer-segment segment --input input.txt --output segmented.txt
cat input.txt | khmer-segment segment

Machine-readable output:

khmer-segment segment "ខ្ញុំសរសេរឯកសារ" --format json
khmer-segment analyze "ខ្ញុំសរសេរឯកសារ" --format json

analyze reports lexical candidates; it does not claim contextual POS tagging.

Experimental hyphenation and benchmarking:

khmer-segment hyphenate "សហប្រតិបត្តិការ" --visible-hyphen
khmer-segment benchmark --input dataset/my_corpus.txt --limit 1000

The hyphenate command is not production-ready: many words may contain incorrect or missing break positions.

Use a non-default local data directory with the global option before the subcommand:

khmer-segment --data-dir /path/to/local/data segment "អត្ថបទខ្មែរ"

Build the Python distribution

python -m pip install --upgrade build twine
python -m build
python -m twine check dist/*

The wheel contains code plus the four approved runtime data files. Tests audit the archive to reject corpora, backups, provenance payloads, and unapproved linguistic artifacts.

Documentation

Data policy

The four runtime files listed in DATA_LICENSE.md are redistributed with attribution for noncommercial use. Source downloads, evaluation corpora, backups, provenance payloads, intermediate tables, and native build artifacts remain ignored and local.

Removing files from the current Git tree does not remove copies from old Git history. See the data policy before publishing or rewriting repository history.

License and acknowledgements

Project code is licensed under the MIT License. Bundled linguistic data is subject to the separate attribution and noncommercial notice.

Original data authors, authorities, corpus creators, and annotators are listed in Data Sources, Attribution, and Provenance.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

khmer_viterbi_segmenter-0.1.1.tar.gz (909.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

khmer_viterbi_segmenter-0.1.1-py3-none-any.whl (922.2 kB view details)

Uploaded Python 3

File details

Details for the file khmer_viterbi_segmenter-0.1.1.tar.gz.

File metadata

  • Download URL: khmer_viterbi_segmenter-0.1.1.tar.gz
  • Upload date:
  • Size: 909.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for khmer_viterbi_segmenter-0.1.1.tar.gz
Algorithm Hash digest
SHA256 197190291f45561009962ce6317734b4a749764d949d10a837c7e6e4a8e6f0cc
MD5 dce0ff7f86551cdee2f8ba8366f56553
BLAKE2b-256 e16e455425b09300c225fbb91e94728e48730e379a30ec92a67e34253b045204

See more details on using hashes here.

Provenance

The following attestation bundles were made for khmer_viterbi_segmenter-0.1.1.tar.gz:

Publisher: publish-to-pypi.yml on Sovichea/khmer_segmenter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file khmer_viterbi_segmenter-0.1.1-py3-none-any.whl.

File metadata

File hashes

Hashes for khmer_viterbi_segmenter-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 48593e4034792bcf2dc5437b1524d94ae1b1b14639ca00c94734f401c1e58ecc
MD5 617d6750bc0a141e9fb3dfab222ded29
BLAKE2b-256 74ab8ea20bb3a99e29fa95dc0b094e0aa4f26976a677581cba20c6a3063998c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for khmer_viterbi_segmenter-0.1.1-py3-none-any.whl:

Publisher: publish-to-pypi.yml on Sovichea/khmer_segmenter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page