Skip to main content

Khmer Neural Segmenter

Project description

Khmer Neural Segmenter

A fast Khmer word segmentation library.

Installation

pip install khmerns

Usage

from khmerns import tokenize, normalize

# Returns a list of words
words = tokenize("សួស្តីបងប្អូន")
# => ['សួស្តី', 'បង', 'ប្អូន']

# normalize and reorder Khmer characters
words = tokenize(normalize("សួស្តីបងប្អូន"))
# => ['សួស្តី', 'បង', 'ប្អូន']

You can also use the class-based API if you prefer:

from khmerns import KhmerSegmenter

segmenter = KhmerSegmenter()

words = segmenter.tokenize("សួស្តីបងប្អូន")
# or

words = segmenter("សួស្តីបងប្អូន")

Training

The training pipeline lives in the training/ directory. It trains a BiGRU + CRF model on character-level BIO tags, then converts the result to GGUF for the C++ inference backend.

Data format

Training data is a plain text file at training/data/train.txt. One word per line. Words that appear on consecutive lines are treated as part of the same sentence. The model learns word boundaries from this.

Example training/data/train.txt:

សួស្តី
បង
ប្អូន
ខ្ញុំ
ទៅ
ផ្សារ

Non-Khmer tokens (spaces, punctuation, numbers, Latin text) are tagged as NON-KHMER. Khmer tokens get B-WORD on the first character and I-WORD on the rest.

Steps

cd training
pip install -r requirements.txt

1. Prepare training data

Place your segmented text in data/train.txt (one word per line). If you have raw unsegmented Khmer text, you can use the generation script to pre-segment it:

python generate.py

This requires khmersegment and a source text file. Edit the path in generate.py to point to your raw text.

2. Train

python train.py

Trains for 20 epochs with AdamW (lr=1e-5) and ReduceLROnPlateau. Saves best_model.pt (best eval loss) and model.pt (final). Uses CUDA if available.

3. Convert to GGUF

python convert_to_gguf.py best_model.pt model.gguf

This produces a GGUF file (~3.3MB) containing all model weights.

4. Embed in the C++ binary

To use the new model in the library, convert the GGUF file to a C header and replace src/model_data.h, then rebuild:

xxd -i model.gguf > ../src/model_data.h
pip install -e ..

License

MIT

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

khmerns-0.0.4.tar.gz (4.8 MB view details)

Uploaded Source

Built Distributions

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

khmerns-0.0.4-pp311-pypy311_pp73-win_amd64.whl (4.4 MB view details)

Uploaded PyPyWindows x86-64

khmerns-0.0.4-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (4.2 MB view details)

Uploaded PyPymanylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

khmerns-0.0.4-pp311-pypy311_pp73-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (4.1 MB view details)

Uploaded PyPymanylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

khmerns-0.0.4-pp311-pypy311_pp73-macosx_11_0_x86_64.whl (4.4 MB view details)

Uploaded PyPymacOS 11.0+ x86-64

khmerns-0.0.4-pp311-pypy311_pp73-macosx_11_0_arm64.whl (4.3 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

khmerns-0.0.4-cp314-cp314t-win_amd64.whl (4.4 MB view details)

Uploaded CPython 3.14tWindows x86-64

khmerns-0.0.4-cp314-cp314t-win32.whl (4.0 MB view details)

Uploaded CPython 3.14tWindows x86

khmerns-0.0.4-cp314-cp314t-musllinux_1_2_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

khmerns-0.0.4-cp314-cp314t-musllinux_1_2_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

khmerns-0.0.4-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

khmerns-0.0.4-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (4.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

khmerns-0.0.4-cp314-cp314t-macosx_11_0_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ x86-64

khmerns-0.0.4-cp314-cp314t-macosx_11_0_arm64.whl (4.3 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

khmerns-0.0.4-cp314-cp314-win_amd64.whl (4.4 MB view details)

Uploaded CPython 3.14Windows x86-64

khmerns-0.0.4-cp314-cp314-win32.whl (4.0 MB view details)

Uploaded CPython 3.14Windows x86

khmerns-0.0.4-cp314-cp314-musllinux_1_2_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

khmerns-0.0.4-cp314-cp314-musllinux_1_2_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

khmerns-0.0.4-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

khmerns-0.0.4-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (4.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

khmerns-0.0.4-cp314-cp314-macosx_11_0_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.14macOS 11.0+ x86-64

khmerns-0.0.4-cp314-cp314-macosx_11_0_arm64.whl (4.3 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

khmerns-0.0.4-cp313-cp313-win_amd64.whl (4.4 MB view details)

Uploaded CPython 3.13Windows x86-64

khmerns-0.0.4-cp313-cp313-win32.whl (4.0 MB view details)

Uploaded CPython 3.13Windows x86

khmerns-0.0.4-cp313-cp313-musllinux_1_2_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

khmerns-0.0.4-cp313-cp313-musllinux_1_2_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

khmerns-0.0.4-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

khmerns-0.0.4-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (4.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

khmerns-0.0.4-cp313-cp313-macosx_11_0_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.13macOS 11.0+ x86-64

khmerns-0.0.4-cp313-cp313-macosx_11_0_arm64.whl (4.3 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

khmerns-0.0.4-cp312-cp312-win_amd64.whl (4.4 MB view details)

Uploaded CPython 3.12Windows x86-64

khmerns-0.0.4-cp312-cp312-win32.whl (4.0 MB view details)

Uploaded CPython 3.12Windows x86

khmerns-0.0.4-cp312-cp312-musllinux_1_2_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

khmerns-0.0.4-cp312-cp312-musllinux_1_2_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

khmerns-0.0.4-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

khmerns-0.0.4-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (4.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

khmerns-0.0.4-cp312-cp312-macosx_11_0_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.12macOS 11.0+ x86-64

khmerns-0.0.4-cp312-cp312-macosx_11_0_arm64.whl (4.3 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

khmerns-0.0.4-cp311-cp311-win_amd64.whl (4.4 MB view details)

Uploaded CPython 3.11Windows x86-64

khmerns-0.0.4-cp311-cp311-win32.whl (4.0 MB view details)

Uploaded CPython 3.11Windows x86

khmerns-0.0.4-cp311-cp311-musllinux_1_2_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

khmerns-0.0.4-cp311-cp311-musllinux_1_2_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

khmerns-0.0.4-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

khmerns-0.0.4-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (4.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

khmerns-0.0.4-cp311-cp311-macosx_11_0_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.11macOS 11.0+ x86-64

khmerns-0.0.4-cp311-cp311-macosx_11_0_arm64.whl (4.3 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

khmerns-0.0.4-cp310-cp310-win_amd64.whl (4.4 MB view details)

Uploaded CPython 3.10Windows x86-64

khmerns-0.0.4-cp310-cp310-win32.whl (4.0 MB view details)

Uploaded CPython 3.10Windows x86

khmerns-0.0.4-cp310-cp310-musllinux_1_2_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

khmerns-0.0.4-cp310-cp310-musllinux_1_2_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

khmerns-0.0.4-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

khmerns-0.0.4-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (4.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

khmerns-0.0.4-cp310-cp310-macosx_11_0_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.10macOS 11.0+ x86-64

khmerns-0.0.4-cp310-cp310-macosx_11_0_arm64.whl (4.3 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

khmerns-0.0.4-cp39-cp39-win_amd64.whl (4.4 MB view details)

Uploaded CPython 3.9Windows x86-64

khmerns-0.0.4-cp39-cp39-win32.whl (4.0 MB view details)

Uploaded CPython 3.9Windows x86

khmerns-0.0.4-cp39-cp39-musllinux_1_2_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

khmerns-0.0.4-cp39-cp39-musllinux_1_2_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

khmerns-0.0.4-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

khmerns-0.0.4-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (4.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

khmerns-0.0.4-cp39-cp39-macosx_11_0_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.9macOS 11.0+ x86-64

khmerns-0.0.4-cp39-cp39-macosx_11_0_arm64.whl (4.3 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

Details for the file khmerns-0.0.4.tar.gz.

File metadata

  • Download URL: khmerns-0.0.4.tar.gz
  • Upload date:
  • Size: 4.8 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for khmerns-0.0.4.tar.gz
Algorithm Hash digest
SHA256 5efb867eec9452d6c661a5bf55301d4fa29b92b85d676d7f707728853ef4a4ca
MD5 6a6865b2defc946ef39e44090783bdcb
BLAKE2b-256 7ce5e3a78f78370cc375af5103a1033def1eeb91503174386b9f0a286cc83d47

See more details on using hashes here.

Provenance

The following attestation bundles were made for khmerns-0.0.4.tar.gz:

Publisher: wheels.yml on seanghay/khmer-neural-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 khmerns-0.0.4-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for khmerns-0.0.4-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 01841d8fd11a4b2297b70d44558a8f120abefd2e0a480fa7c89639af3893077e
MD5 634f7c91a23e38dca536045244344f63
BLAKE2b-256 08daafcff46b34ccce04018838adb4ed433601cc420aed9b06e608e2883384a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for khmerns-0.0.4-pp311-pypy311_pp73-win_amd64.whl:

Publisher: wheels.yml on seanghay/khmer-neural-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 khmerns-0.0.4-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for khmerns-0.0.4-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a62fb07c26636f0a7c0954ab162a6e2ab6b7ba7b8c2da9125915f57934824d5b
MD5 7adf33208119efb15f328de5c3942e4e
BLAKE2b-256 223ee084dad6358e9f33e059511cd0b830b6ffd2bd738ccb7f53240653699ca1

See more details on using hashes here.

Provenance

The following attestation bundles were made for khmerns-0.0.4-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on seanghay/khmer-neural-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 khmerns-0.0.4-pp311-pypy311_pp73-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for khmerns-0.0.4-pp311-pypy311_pp73-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 58457e30208650f8c06fbd60c7700dab6c837ca777d2196aa9b42c5a120ee25b
MD5 9236be6410c2bfdca82c775db39f3733
BLAKE2b-256 151b5af6585d63a11f2c46ddafdbd09e35e88aa501ad1ca42e4a38e1f279cf91

See more details on using hashes here.

Provenance

The following attestation bundles were made for khmerns-0.0.4-pp311-pypy311_pp73-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on seanghay/khmer-neural-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 khmerns-0.0.4-pp311-pypy311_pp73-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for khmerns-0.0.4-pp311-pypy311_pp73-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 870e736215ad6957d6632488f2e0671e1050e4e869b7d753b4933651c63df71c
MD5 b721630ef1ac0376907d8be41d26707e
BLAKE2b-256 5a8d94979a4e281477edfb873839a8f6b365688a5d09a5e0f9e32ba95dde1574

See more details on using hashes here.

Provenance

The following attestation bundles were made for khmerns-0.0.4-pp311-pypy311_pp73-macosx_11_0_x86_64.whl:

Publisher: wheels.yml on seanghay/khmer-neural-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 khmerns-0.0.4-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for khmerns-0.0.4-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5846e129a5cbc6d211915f6cc3b361186655df5389a47f0fc23488b13a5f2705
MD5 41254ff47a32158eb1c3ed41f180469b
BLAKE2b-256 2fd144176a5db7f7e505d974433b7ab8f9d7ec4862394c0b68bd7c3947ab6084

See more details on using hashes here.

Provenance

The following attestation bundles were made for khmerns-0.0.4-pp311-pypy311_pp73-macosx_11_0_arm64.whl:

Publisher: wheels.yml on seanghay/khmer-neural-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 khmerns-0.0.4-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: khmerns-0.0.4-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for khmerns-0.0.4-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 b2551c3a8dfc2b60fe37288ab9cd5a0936f14b88ba5e044bd1888957a58b1996
MD5 021e0ec8fca978183b7dbdd263e857f8
BLAKE2b-256 6e24107e8e328d5af4180289dfd866c34beeb14eb21f8d204138a234818f8ae2

See more details on using hashes here.

Provenance

The following attestation bundles were made for khmerns-0.0.4-cp314-cp314t-win_amd64.whl:

Publisher: wheels.yml on seanghay/khmer-neural-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 khmerns-0.0.4-cp314-cp314t-win32.whl.

File metadata

  • Download URL: khmerns-0.0.4-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 4.0 MB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for khmerns-0.0.4-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 ee4bbf855834dad736f01d26d3d98c4578aa813a4bd3b7e370da3b0b00c621c2
MD5 dfacbba0ba833fdf993f0a2c3ac763aa
BLAKE2b-256 c98f6dd438bf69223c19c5e3703f6ec19bbc8a8ddc589a4d72554fcd19452f9e

See more details on using hashes here.

Provenance

The following attestation bundles were made for khmerns-0.0.4-cp314-cp314t-win32.whl:

Publisher: wheels.yml on seanghay/khmer-neural-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 khmerns-0.0.4-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for khmerns-0.0.4-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3fbf7616ecaf35f7d4efee297b72e9fcfe10958a72e5db2e3c7809bca684775f
MD5 c4f2daaf7eb9692a47fc7d5d625590cc
BLAKE2b-256 dd719351c234789c6925982fab11e8c5f062ea31308d1b43972875e4429acda3

See more details on using hashes here.

Provenance

The following attestation bundles were made for khmerns-0.0.4-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on seanghay/khmer-neural-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 khmerns-0.0.4-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for khmerns-0.0.4-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1813b95f6d587e971f9046d27de2ff6c547252adaf456152f1fcb58671591018
MD5 99e2d9874197a323dd4e2db9419e1770
BLAKE2b-256 b8d16e605a506391614c3f389a12d88cf1a47ff60794c102209d39e354436a91

See more details on using hashes here.

Provenance

The following attestation bundles were made for khmerns-0.0.4-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on seanghay/khmer-neural-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 khmerns-0.0.4-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for khmerns-0.0.4-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ae15e2a680064aba715433374963da1cdced224e5a0cff6e9d150a67ca6202f6
MD5 c60e9090e4462713ed386024dd6c8de7
BLAKE2b-256 040c2ec62ecf8a1e8492717b5af974d8c12d2be161c7892351f8cacb9b4d9d40

See more details on using hashes here.

Provenance

The following attestation bundles were made for khmerns-0.0.4-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on seanghay/khmer-neural-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 khmerns-0.0.4-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for khmerns-0.0.4-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 56daf801b7439a17f3c310dd35d5df0ab83a77bc3cd0c2f6495ef3641ed85972
MD5 8c95e17d631c13162dc700ce1d7127e5
BLAKE2b-256 09b304dcba9f091b2bf0cd4d1c2f58f2ee8249cc2a4d7e36d8e0c357bc140c81

See more details on using hashes here.

Provenance

The following attestation bundles were made for khmerns-0.0.4-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on seanghay/khmer-neural-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 khmerns-0.0.4-cp314-cp314t-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for khmerns-0.0.4-cp314-cp314t-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 89bab106a74b6a972ca1cc46273d571e94dc5e4987fedad8420bc847c5949b38
MD5 efcf48ff935fe63fb3db3801054b0498
BLAKE2b-256 e208a41c2434a0e76187d3ed9dbff8afee5a9e384d27db9d2ed4492259de1b18

See more details on using hashes here.

Provenance

The following attestation bundles were made for khmerns-0.0.4-cp314-cp314t-macosx_11_0_x86_64.whl:

Publisher: wheels.yml on seanghay/khmer-neural-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 khmerns-0.0.4-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for khmerns-0.0.4-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3779a8385a442029358c9c11c73bab377b53fe0ea7300d779944b7a719c5916c
MD5 867e16507b7b883f848e938e112d816e
BLAKE2b-256 cc8e53014a8a918c5083dc2c5723ee95613723f46460044098833cbaa35caa82

See more details on using hashes here.

Provenance

The following attestation bundles were made for khmerns-0.0.4-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: wheels.yml on seanghay/khmer-neural-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 khmerns-0.0.4-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: khmerns-0.0.4-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for khmerns-0.0.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 13faa5d9a5e278a3e03ea284106aef040d85bdad51cb572011efd7c128a54669
MD5 e09631df54b3bb52097c527a752c5674
BLAKE2b-256 1d66cc248d501dd76ec04fa78d4323c218860257bf414d4bf0e2dcb2616bb6ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for khmerns-0.0.4-cp314-cp314-win_amd64.whl:

Publisher: wheels.yml on seanghay/khmer-neural-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 khmerns-0.0.4-cp314-cp314-win32.whl.

File metadata

  • Download URL: khmerns-0.0.4-cp314-cp314-win32.whl
  • Upload date:
  • Size: 4.0 MB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for khmerns-0.0.4-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 70dfcd67117c34071386cf3f89fcdf16a79725fc7af648fd7d0925a1db762aa0
MD5 9f64b829c7dad6243d4a79e014cb35d2
BLAKE2b-256 6dd1955765ea7e9c9eec98a24d1a2122bec03eb690f69e604ee23cf0c2615b3e

See more details on using hashes here.

Provenance

The following attestation bundles were made for khmerns-0.0.4-cp314-cp314-win32.whl:

Publisher: wheels.yml on seanghay/khmer-neural-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 khmerns-0.0.4-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for khmerns-0.0.4-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f844d2e983925eaab6e8d005b818ddd47fe139c4638b2f78bef8f8e79a0a21e6
MD5 fcf8ded7b0f8528eb99025458b2f6bf1
BLAKE2b-256 eb3a6f3df5736db701a9c1f39c63c1acfa4e576afd70b11e011cd700e5c40ea5

See more details on using hashes here.

Provenance

The following attestation bundles were made for khmerns-0.0.4-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on seanghay/khmer-neural-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 khmerns-0.0.4-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for khmerns-0.0.4-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a18b5e02691ada7ad72cce44f8bb04392c101dab9897a9d73cf430b3715304a9
MD5 4698d5a3b0489bc67b611067355e040b
BLAKE2b-256 3a96abb28db7ddd049053330309f8584600d321a04d346fb5fc6adfaf9324118

See more details on using hashes here.

Provenance

The following attestation bundles were made for khmerns-0.0.4-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on seanghay/khmer-neural-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 khmerns-0.0.4-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for khmerns-0.0.4-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c356bfff8bf106a07fd61ea61f3a52e100bf5b67244d89b9bf235b27efac81f6
MD5 d82ee13cd132ebec222ce13c92d90255
BLAKE2b-256 8ba3931b570e14c2efd45d5546da18771bb518fd0094340a2af3f0176f50f7b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for khmerns-0.0.4-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on seanghay/khmer-neural-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 khmerns-0.0.4-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for khmerns-0.0.4-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a6eed6ad03d5d3c72231209e123f162c33a16cec6cc639c36b63485bc86ebf6c
MD5 b72e8bd2fa0926c32465b00c0619cc45
BLAKE2b-256 16702fd5c98dab34a589f36cbfe70c62a352f402f88acc6651155fdefaee7875

See more details on using hashes here.

Provenance

The following attestation bundles were made for khmerns-0.0.4-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on seanghay/khmer-neural-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 khmerns-0.0.4-cp314-cp314-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for khmerns-0.0.4-cp314-cp314-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 2440467f0d22794ba8f9a26f437a3b2c16775ae5662ba73e74ca86714ea2b1e9
MD5 86719cd8a810d7022ded3cba19feaa84
BLAKE2b-256 a7a030a67c856225da2e289cd6ba14edc265345e31c4a644043e9f6113e5bd62

See more details on using hashes here.

Provenance

The following attestation bundles were made for khmerns-0.0.4-cp314-cp314-macosx_11_0_x86_64.whl:

Publisher: wheels.yml on seanghay/khmer-neural-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 khmerns-0.0.4-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for khmerns-0.0.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e4724c6a5947930511f6e6ff06cf495e762f8ef37964a6226db8afe0cbe9870e
MD5 72558558e79aa5d225165f5e7350fae6
BLAKE2b-256 0930de859d7be0846e42788843eeb91855c778709ef2be81acb526acfe5ed8e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for khmerns-0.0.4-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: wheels.yml on seanghay/khmer-neural-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 khmerns-0.0.4-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: khmerns-0.0.4-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for khmerns-0.0.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6299c221c867cb24f5dca8fcb9f04c568f63bac66831d2e6ab80c8daa077ced5
MD5 c1423045ec4928c2b3adf0b2b9dfcc2b
BLAKE2b-256 b3ad353e86896a1a35e7ee8318a59818a5229133314d55e1fd541ae4437684cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for khmerns-0.0.4-cp313-cp313-win_amd64.whl:

Publisher: wheels.yml on seanghay/khmer-neural-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 khmerns-0.0.4-cp313-cp313-win32.whl.

File metadata

  • Download URL: khmerns-0.0.4-cp313-cp313-win32.whl
  • Upload date:
  • Size: 4.0 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for khmerns-0.0.4-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 9acf425bb26ade0dcc5a6861d898bbf3ee745e16be16241bfa358a8df00fdeb7
MD5 38f4bdfed8567c2ed775fbe1b6649035
BLAKE2b-256 f22a592c42b860d461e01974c06459d501ac141212bd788fa9bce98ec8016d8e

See more details on using hashes here.

Provenance

The following attestation bundles were made for khmerns-0.0.4-cp313-cp313-win32.whl:

Publisher: wheels.yml on seanghay/khmer-neural-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 khmerns-0.0.4-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for khmerns-0.0.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 81895063ad41268b826bd856fd9dede0c23b4be2c792267495e84dd98ed43c4c
MD5 d1e301e0e77ac7142d1f4a5e8368553f
BLAKE2b-256 59bf2a0cbc8150d6786f5b17e61584356c1e4f53f703028d624d36053b8f232f

See more details on using hashes here.

Provenance

The following attestation bundles were made for khmerns-0.0.4-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on seanghay/khmer-neural-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 khmerns-0.0.4-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for khmerns-0.0.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c546a27ddd5a88f5aa7dfe52d844c0160db0e45d2c1b3f0d252981d479ca57bc
MD5 3e822a1addc18ea67bb3a815d477c257
BLAKE2b-256 9d3e00681af9e298ab186c92365dbda97d3ffe058e7ab712c70c30d0e0db93ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for khmerns-0.0.4-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on seanghay/khmer-neural-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 khmerns-0.0.4-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for khmerns-0.0.4-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9174d87cca59e0a38aebde0ddc6f5c51012a1d3cd2248707d23ae68a692eeb67
MD5 0cf3bf32980dcc72fbabce019bf222e7
BLAKE2b-256 4f6a6eed617c4091077509990b431c77001830a041ca57a4d59bc4039fd54d50

See more details on using hashes here.

Provenance

The following attestation bundles were made for khmerns-0.0.4-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on seanghay/khmer-neural-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 khmerns-0.0.4-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for khmerns-0.0.4-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ce9cce21532dd705de006ba9353bf94b5e61093d546a776221bb07ebe4abb178
MD5 74438882723266ec4a5cfd5b6a63861c
BLAKE2b-256 f0c809dcbf8c3354644ffebda85733ddfdba1b0b0dda453f63f1a9d89b658030

See more details on using hashes here.

Provenance

The following attestation bundles were made for khmerns-0.0.4-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on seanghay/khmer-neural-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 khmerns-0.0.4-cp313-cp313-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for khmerns-0.0.4-cp313-cp313-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 711356acfcca696aa0fce8fd36f3b0852644698e2a164e8fd7947c5ccc7a1fe3
MD5 f5b851e5350f631b40e6c8a90cb46ecd
BLAKE2b-256 a1c539ddb06874ff28f418aea15c377ee12239d072024f3c2898c7179d8cda6d

See more details on using hashes here.

Provenance

The following attestation bundles were made for khmerns-0.0.4-cp313-cp313-macosx_11_0_x86_64.whl:

Publisher: wheels.yml on seanghay/khmer-neural-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 khmerns-0.0.4-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for khmerns-0.0.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 54f86b3bf58e79c14a20a4c5be33f8b4cf269e5d026c7012ba0a75c3fa30d0a3
MD5 7a364a870a68116b3127ef222b8e89ba
BLAKE2b-256 11f559ced391c88b04e74daf0653ed8d291dfa918be720b17e9998504a706b90

See more details on using hashes here.

Provenance

The following attestation bundles were made for khmerns-0.0.4-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: wheels.yml on seanghay/khmer-neural-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 khmerns-0.0.4-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: khmerns-0.0.4-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for khmerns-0.0.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c9bffccb7b6fc11ec9a93051a03b978f398343fdf15a22b6cab8eb527ccbb4e3
MD5 3353d7ae8175f345a635617165f14208
BLAKE2b-256 fa5445bb00b78c4b356c8d197c1b4fd653efcf9b66ab9ae9be3cb5c6596d73d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for khmerns-0.0.4-cp312-cp312-win_amd64.whl:

Publisher: wheels.yml on seanghay/khmer-neural-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 khmerns-0.0.4-cp312-cp312-win32.whl.

File metadata

  • Download URL: khmerns-0.0.4-cp312-cp312-win32.whl
  • Upload date:
  • Size: 4.0 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for khmerns-0.0.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 888d3305b63c2773de706b58d2d2b3db7c268b9ae74079bff99676fa57fc18c4
MD5 8e9ec2a05f405fda46a2c4327e19f9a7
BLAKE2b-256 11898be232a66e0d1ae7825503f0c7187b47d1369c6fab62a503ad90ca6e111f

See more details on using hashes here.

Provenance

The following attestation bundles were made for khmerns-0.0.4-cp312-cp312-win32.whl:

Publisher: wheels.yml on seanghay/khmer-neural-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 khmerns-0.0.4-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for khmerns-0.0.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b44cb7efba948955fed0d248f034089bc61b5180e7ca4be3e57cdfeb0a4a67fa
MD5 7d1ec5483e560528694fb73e41cf1fa8
BLAKE2b-256 8e5be4d7402a10b1e630396e5c170b1b641c3a54bdbc720a5890492f23d83366

See more details on using hashes here.

Provenance

The following attestation bundles were made for khmerns-0.0.4-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on seanghay/khmer-neural-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 khmerns-0.0.4-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for khmerns-0.0.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d2e0be5e31c655b9b8fb700cb6da710ce0a2d0ab79066eeee3680bcab41aa6cd
MD5 df777043857713c87df41257105e70b9
BLAKE2b-256 ed4c06b1c292a90984f729edb38f21ecc0676767bc80188cc5a88e928ad31d84

See more details on using hashes here.

Provenance

The following attestation bundles were made for khmerns-0.0.4-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on seanghay/khmer-neural-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 khmerns-0.0.4-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for khmerns-0.0.4-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ed9dec1895d9b9403efefcbd992f62f1ee91b4bfc07b4ad84c90acb865c3cacd
MD5 f58ebefc46e02f7813f87ad01f12f4c4
BLAKE2b-256 489052d803df961f31375c73b17aa852a4b303f397defcbe353a98375d63bc4a

See more details on using hashes here.

Provenance

The following attestation bundles were made for khmerns-0.0.4-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on seanghay/khmer-neural-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 khmerns-0.0.4-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for khmerns-0.0.4-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0077dc8aea40e8f0aa416bf100ea1a180ad52d387b78bb6990c9bae71b6551f9
MD5 87c527abbfb924a92d6ab7b4c92c1518
BLAKE2b-256 c983067d6bad0496905731f418bcc87fcfd1f8302a4ab9b7b8dc8a621f4110d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for khmerns-0.0.4-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on seanghay/khmer-neural-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 khmerns-0.0.4-cp312-cp312-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for khmerns-0.0.4-cp312-cp312-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 c5ac56dfc38cf5681184c8314987b81766ab34bfbed6fc6f195a4c8a2e8c7b8e
MD5 82c7265117609e127102b03cbd2f5efb
BLAKE2b-256 cf8ea86aa9c058560e3849071eb00da4077ec31e2166c62b910abbdfe20e7a98

See more details on using hashes here.

Provenance

The following attestation bundles were made for khmerns-0.0.4-cp312-cp312-macosx_11_0_x86_64.whl:

Publisher: wheels.yml on seanghay/khmer-neural-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 khmerns-0.0.4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for khmerns-0.0.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ece9621f6c2ac8a7ea6df860b24ef430c01ed16a56bf4edc24b3a209dcd9e406
MD5 cf4edfe1bd59bb0e5f681b657ce2d299
BLAKE2b-256 87dd696e4d2570f15e88203c847676e97c998f5c654bbc19f4be4318bc8bebf7

See more details on using hashes here.

Provenance

The following attestation bundles were made for khmerns-0.0.4-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: wheels.yml on seanghay/khmer-neural-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 khmerns-0.0.4-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: khmerns-0.0.4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for khmerns-0.0.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3390ed91b55ecb6515e77af1de641fe4f879058c77fae33acce8111a8bd94d37
MD5 e7f06b18872cb14fc3088fd79e2a8670
BLAKE2b-256 d2907968216a665dc2638c753dcf82fa5f253ccc483dcde7c41e3319567edcf8

See more details on using hashes here.

Provenance

The following attestation bundles were made for khmerns-0.0.4-cp311-cp311-win_amd64.whl:

Publisher: wheels.yml on seanghay/khmer-neural-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 khmerns-0.0.4-cp311-cp311-win32.whl.

File metadata

  • Download URL: khmerns-0.0.4-cp311-cp311-win32.whl
  • Upload date:
  • Size: 4.0 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for khmerns-0.0.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 58dd0cd572c42520820d7c6ce949ed1a5fce160bb92cd31a476072b2cc296499
MD5 9fe6aec4d2ea43be122fbc8bfaad3a7c
BLAKE2b-256 9cd003d753636e9583ffeef5140a8a16344654c4c21878ec7aa017fe9ba310ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for khmerns-0.0.4-cp311-cp311-win32.whl:

Publisher: wheels.yml on seanghay/khmer-neural-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 khmerns-0.0.4-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for khmerns-0.0.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4c87fb9372c10d817833e47948f274c10b7a500dede9d5f80bdeb83479565876
MD5 725de430cded0a7b00a3308ab057a29d
BLAKE2b-256 ceec46bed64aa4c70cfcd0a5880f96aae5be3e3a8d336f648d17fe0f277b3fe5

See more details on using hashes here.

Provenance

The following attestation bundles were made for khmerns-0.0.4-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on seanghay/khmer-neural-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 khmerns-0.0.4-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for khmerns-0.0.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 89eb2387c9afb4c5786f15d7f76f205e5dff2932a523ffaccd766e6ce0123541
MD5 c4bbd2f88183058914dc59a84336f6dd
BLAKE2b-256 8a2498bee2c9965b2506eb20b44e84e7ea96733915e3dcc9a794c36f6b674fb2

See more details on using hashes here.

Provenance

The following attestation bundles were made for khmerns-0.0.4-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on seanghay/khmer-neural-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 khmerns-0.0.4-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for khmerns-0.0.4-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dfcae4002106f431a59da8a18aa115865e57e31dcf000c7834b53ea1fd075ace
MD5 fc0fe58a1a615b1e1370643c3aa4c0cb
BLAKE2b-256 126041dd6c3b6ff398a6c302d52922faf6e5413d1a8e904d71f2ef2e1ea0775b

See more details on using hashes here.

Provenance

The following attestation bundles were made for khmerns-0.0.4-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on seanghay/khmer-neural-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 khmerns-0.0.4-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for khmerns-0.0.4-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 aff3135b952b1b14d3124f6d443fc59f44fc0b80c98862cd87171cd0982a1227
MD5 eeaec47e8c1c0a6d0586639296549302
BLAKE2b-256 ea98902fe122066b61b1897d558477a2a4145b90ff30bb6449d4f4a749185978

See more details on using hashes here.

Provenance

The following attestation bundles were made for khmerns-0.0.4-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on seanghay/khmer-neural-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 khmerns-0.0.4-cp311-cp311-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for khmerns-0.0.4-cp311-cp311-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 0fd9a37ceab8cd921c976903eb18cbc4d9c900f66dbae51e68e68f137b26c0b7
MD5 162e1ce2a01e3c981345f987867d7886
BLAKE2b-256 2adcb8c43809c8643316964442f1695930dff275109ffb43aa873c9c19b1a9c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for khmerns-0.0.4-cp311-cp311-macosx_11_0_x86_64.whl:

Publisher: wheels.yml on seanghay/khmer-neural-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 khmerns-0.0.4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for khmerns-0.0.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3cc8dab0202d2ea358b44e431aa3b721d6298ff3e33052e2941154f9761c6a9e
MD5 ee1c67aaec9faf09e17c1551c071e061
BLAKE2b-256 a959776ebc711ad4b606bab7aa97b31a4edf48ec07bf676119a30d6cd6a2273b

See more details on using hashes here.

Provenance

The following attestation bundles were made for khmerns-0.0.4-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: wheels.yml on seanghay/khmer-neural-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 khmerns-0.0.4-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: khmerns-0.0.4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for khmerns-0.0.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f4fe56cc29db5335366b528f18489038e9d47558e0e8f0ca251b7d3ff35d7503
MD5 528a4a23393391199e9a8bdd46fd251b
BLAKE2b-256 2b327c3b249b76186cb47f016050dacd449efc7b011b907b86250b87febc347b

See more details on using hashes here.

Provenance

The following attestation bundles were made for khmerns-0.0.4-cp310-cp310-win_amd64.whl:

Publisher: wheels.yml on seanghay/khmer-neural-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 khmerns-0.0.4-cp310-cp310-win32.whl.

File metadata

  • Download URL: khmerns-0.0.4-cp310-cp310-win32.whl
  • Upload date:
  • Size: 4.0 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for khmerns-0.0.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 0f8e1ed86cffc97460659e0e632bdceb88c9071d9276ff13c4860f2d03c4e181
MD5 e19a8df2c167d953a9ecf6f73ef96284
BLAKE2b-256 d99953e8dfb57f0316f5a3ea9268f4fc176cae065375979830845af5863f8899

See more details on using hashes here.

Provenance

The following attestation bundles were made for khmerns-0.0.4-cp310-cp310-win32.whl:

Publisher: wheels.yml on seanghay/khmer-neural-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 khmerns-0.0.4-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for khmerns-0.0.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 51a9864166e6211698de883fa0fb80e7e31a0c4192aff5a7f2310c16bd7766bd
MD5 c8cf24dd68d9959015cd73adf0878d6f
BLAKE2b-256 de9d220bd23add09f63feee9719bda7f36b0cc552cad82c75caa24e9afda3fe5

See more details on using hashes here.

Provenance

The following attestation bundles were made for khmerns-0.0.4-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on seanghay/khmer-neural-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 khmerns-0.0.4-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for khmerns-0.0.4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 27303f717602acae3360d73cf8998e6c8dfde5783cc4a6ef50eae61db6b3ea4e
MD5 fb485d897bd22dbb2f786f0f3a310630
BLAKE2b-256 3cdb045644e4495a8eccdd6ec6f7fb2afc062c2086d23d22f80bceb4a6183ded

See more details on using hashes here.

Provenance

The following attestation bundles were made for khmerns-0.0.4-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on seanghay/khmer-neural-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 khmerns-0.0.4-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for khmerns-0.0.4-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fb2b1b857951b71ffd97da2482056b1fb66fb06f7445ff04e6ba91528efbfbb3
MD5 6bbceb74bb522da97c9557430572ad50
BLAKE2b-256 7312b2b1a288c56d9cd37bc325401e2869b499ff60da4700a72f1c051e46991a

See more details on using hashes here.

Provenance

The following attestation bundles were made for khmerns-0.0.4-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on seanghay/khmer-neural-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 khmerns-0.0.4-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for khmerns-0.0.4-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 517abaf344c13aea61f47eb38b4fae7043f2e8105917afae9659f2ae124db233
MD5 101f549043bf40466b21f9d0fddbfc3a
BLAKE2b-256 b30c98690ae3be8070591d0db913e58d954e531ad5cc8026bb1fbed6b9ba3b85

See more details on using hashes here.

Provenance

The following attestation bundles were made for khmerns-0.0.4-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on seanghay/khmer-neural-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 khmerns-0.0.4-cp310-cp310-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for khmerns-0.0.4-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 85629f4c6689abcb3d048f3074095d1643144582fb83bf331955f3e046bf1e94
MD5 09d8ae26214a27d6bc7e7c792067ea65
BLAKE2b-256 eda6ba2444a0c99624b0e48ce561fe79d6371c26a430436e3eeebdc8c13258be

See more details on using hashes here.

Provenance

The following attestation bundles were made for khmerns-0.0.4-cp310-cp310-macosx_11_0_x86_64.whl:

Publisher: wheels.yml on seanghay/khmer-neural-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 khmerns-0.0.4-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for khmerns-0.0.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 64890db39da0e46bff1e2e2016e6f1e0cafc76387696fd33f53198354ffe73a2
MD5 40aec13156c299a3dceedb0f1efe948f
BLAKE2b-256 6208916fdac94040f14e9aa7444fa2fcab3bdae2018d45e3c860189e3410ff41

See more details on using hashes here.

Provenance

The following attestation bundles were made for khmerns-0.0.4-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: wheels.yml on seanghay/khmer-neural-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 khmerns-0.0.4-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: khmerns-0.0.4-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for khmerns-0.0.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 7ba9a2bea55171c5920b10e0578f4823b1b6fdde0b97f95279cd8ee8f20ef431
MD5 6c727194b12e070cb8579a1fd2ec0449
BLAKE2b-256 d79d5f744861f770656826bf8ce49e3a033923c3e00a469ab9b313e89e55bf49

See more details on using hashes here.

Provenance

The following attestation bundles were made for khmerns-0.0.4-cp39-cp39-win_amd64.whl:

Publisher: wheels.yml on seanghay/khmer-neural-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 khmerns-0.0.4-cp39-cp39-win32.whl.

File metadata

  • Download URL: khmerns-0.0.4-cp39-cp39-win32.whl
  • Upload date:
  • Size: 4.0 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for khmerns-0.0.4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 f131bd71aecf26b5910153d5e2ce80a69de9e6147e85143c506b84f6365c50d4
MD5 0634e964a59f09eadff3da016129c3c4
BLAKE2b-256 0aaad79457914d020e333ad1164e752f1f7f3c3bbfe392aeba3ad6a704324d0c

See more details on using hashes here.

Provenance

The following attestation bundles were made for khmerns-0.0.4-cp39-cp39-win32.whl:

Publisher: wheels.yml on seanghay/khmer-neural-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 khmerns-0.0.4-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for khmerns-0.0.4-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0ae8548d773eab4da16523aa12a3c0391bd6f4adf4cf20cfd2dd0b7824fae31f
MD5 055c062f2ca448cf06b0159db4341cfe
BLAKE2b-256 1291364244d9e2cad020ac31bc55984f2384c30b08b6e24ba006f389c8593545

See more details on using hashes here.

Provenance

The following attestation bundles were made for khmerns-0.0.4-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on seanghay/khmer-neural-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 khmerns-0.0.4-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for khmerns-0.0.4-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 68a6a8370ca9f15a5a135ad54887b351fae8a3c614afbf06ca8e5b142851937d
MD5 363bc5f884d4c4e03454e295d2bdc969
BLAKE2b-256 2f2acdf2b39c14d433cf7d67d63b7db81f32fe286d693d72dabbafa11cd8feea

See more details on using hashes here.

Provenance

The following attestation bundles were made for khmerns-0.0.4-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on seanghay/khmer-neural-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 khmerns-0.0.4-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for khmerns-0.0.4-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7af2fd52af669ab72d47e5ee4e5da8cc1694f9cc70856de2a3040e28e91d7726
MD5 e7e28db21eb11a8679ce2c3de241b97f
BLAKE2b-256 ced68a759b7e7bec6ee659f829cb24961178c2d4655df569c81cf5e9fc2e6bd5

See more details on using hashes here.

Provenance

The following attestation bundles were made for khmerns-0.0.4-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on seanghay/khmer-neural-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 khmerns-0.0.4-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for khmerns-0.0.4-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 963df40cb313032971850c89d22e84d0839494a8b92921127b426df763d04f5d
MD5 0528485b27892ed6f5a2656ffb19edbd
BLAKE2b-256 21e2c9572a091bd8e3bf639c2db7f39fc537bbcb12bf30932c2e69fd9cad34ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for khmerns-0.0.4-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on seanghay/khmer-neural-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 khmerns-0.0.4-cp39-cp39-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for khmerns-0.0.4-cp39-cp39-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 f7eef38dfbb96503f7afb37951dd794fa79c99d9d304c040990c9ac65105baf5
MD5 8cb9ce8decb55f02d6c98690ee1f32d4
BLAKE2b-256 c43a7794677f6f368ce8b5ccf24b8e18c2b54d9a67b003a0407d4a15fe4e1b19

See more details on using hashes here.

Provenance

The following attestation bundles were made for khmerns-0.0.4-cp39-cp39-macosx_11_0_x86_64.whl:

Publisher: wheels.yml on seanghay/khmer-neural-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 khmerns-0.0.4-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for khmerns-0.0.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e3e5e488a6e0b183d2263277efc66fd5b1910ef015c381f06264ff582ae99412
MD5 93fbbcdc85bc346053a83a75a9930473
BLAKE2b-256 d5ac291483bdd971a5291cba3da8113b8398fdc8f5e263e16fd880c499821a2e

See more details on using hashes here.

Provenance

The following attestation bundles were made for khmerns-0.0.4-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: wheels.yml on seanghay/khmer-neural-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