text-metrics
Calculate various string metrics efficiently
https://github.com/mrkkrp/text-metrics
| Version on this page: | 0.2.0 |
| LTS Haskell 24.19: | 0.3.3 |
| Stackage Nightly 2025-11-16: | 0.3.3 |
| Latest on Hackage: | 0.3.3 |
text-metrics-0.2.0@sha256:dedd1e5ec0b287c2a2873ab5d86cf0767e014937a7397fe4144cc6023679c5c9,4127Module documentation for 0.2.0
- Data
- Data.Text
Text Metrics
The library provides efficient implementations of various strings metrics.
It works with strict Text values and returns either Natural numbers
(because the metrics cannot be negative), or Ratio Natural values because
returned values are rational non-negative numbers by definition.
The functions provided here are the fastest implementations available for
use in Haskell programs. In fact the functions are implemented in C for
maximal efficiency, but this leads to a minor flaw. When we work with Text
values in C, they are represented as UTF-16 encoded strings of two-byte
values. The algorithms treat the strings as if a character corresponds to
one element in such strings, which is true for almost all modern text data.
However, there are characters that are represented by two adjoined elements
in UTF-16: emoji, historic scripts, less used Chinese ideographs, and some
more. If input Text of the functions contains such characters, the
functions may return slightly incorrect result. Decide for yourself if this
is acceptable for your use case, but chances are you will never run into
situations when the functions produce incorrect results.
The current version of the package implements:
- Levenshtein distance
- Normalized Levenshtein distance
- Damerau-Levenshtein distance
- Normalized Damerau-Levenshtein distance
- Hamming distance
- Jaro distance
- Jaro-Winkler distance
TODO list:
Comparison with the edit-distance package
There
is edit-distance
package whose scope overlaps with the scope of this package. The differences
are:
-
edit-distanceallows to specify costs for every operation when calculating Levenshtein distance (insertion, deletion, substitution, and transposition). This is rarely needed though in real-world applications, IMO. -
edit-distanceonly provides single Levenshtein distance,text-metricsaims to provide implementations of most string metrics algorithms. -
edit-distanceworks onStrings, whiletext-metricsworks on strictTextvalues. -
As
README.mdofedit-distancestates, “[the algorithms] have been fairly heavily optimized”, which is apparently true, yet thetext-metricsis faster for short strings (under 64 characters) and even faster for longer strings (scales better). How much faster? For short strings more than ×3, and about ×4 for longer strings.
Implementation
All “meat” of the algorithms is written in C in a rather straightforward way. Levenshtein variants are based on the “iterative algorithm with two matrix rows” from Wikipedia with additional improvement that we do not copy current row of distances into previous row, but just swap the pointers (which is OK, since the arrays have equal length and current row will be overwritten in the next iteration anyway).
Normalized versions are defined as thin (inlined) Haskell wrappers.
License
Copyright © 2016 Mark Karpov
Distributed under BSD 3 clause license.
Changes
Text Metrics 0.2.0
-
Made the
levenshtein,levenshteinNorm,damerauLevenshtein, anddemerauLevenshteinmore efficient. -
Added
jaroandjaroWinklerfunctions.
Text Metrics 0.1.0
- Initial release.