Install & Compatibility
Where this runs
tested against v0.2.1 · pip install
no network on importno background threads
Install × environment matrix
Each cell = how many times install + import succeeded across repeated harness runs. Partial = flaky.
glibc = Debian/Ubuntu slim · musl = Alpine Linux
py 3.10
✕ build_error
✓ 3.9s
py 3.11
✕ build_error
✓ 3.6s
py 3.12
✕ build_error
✓ 3.6s
py 3.13
✕ build_error
✕ build_error
py 3.9
✕ build_error
✓ 4.3s
94MB installed
● package 94MB
Code
Verified usage
Verified import paths — ran on the pinned version, not inferred.
CRFEditDistance
✓ from highered import CRFEditDistance
✗ from highered import Higer
DefaultStateMachine
✓ from highered import DefaultStateMachine
Hacrf
✓ from highered import Hacrf
Train a learnable edit distance model using Higer.
from highered import Higer, train
# Example training data: pairs of strings with label 1 for match, 0 for mismatch
X = [('abc', 'abc'), ('abc', 'abd')]
y = [1, 0]
model = Higer()
model.fit(X, y)
# Predict distance
print(model.predict(('abc', 'abc'))) # likely less than 0.5
print(model.predict(('abc', 'xyz'))) # likely greater than 0.5
Upgrade
Version history
0.2.1latest on PyPI · released Jun 21, 2016
Audit
Dependencies
No dependency data recorded yet.