- Notifications
You must be signed in to change notification settings - Fork8
Levenshtein distance and similarity metrics with customizable edit costs and Winkler-like bonus for common prefix.
License
agext/levenshtein
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
This package implements distance and similarity metrics for strings, based on the Levenshtein measure, inGo.
v1.2.3 Stable: Guaranteed no breaking changes to the API in future v1.x releases. Probably safe to use in production, though provided on "AS IS" basis.
This package is being actively maintained. If you encounter any problems or have any suggestions for improvement, pleaseopen an issue. Pull requests are welcome.
The LevenshteinDistance between two strings is the minimum total cost of edits that would convert the first string into the second. The allowed edit operations are insertions, deletions, and substitutions, all at character (one UTF-8 code point) level. Each operation has a default cost of 1, but each can be assigned its own cost equal to or greater than 0.
ADistance of 0 means the two strings are identical, and the higher the value the more different the strings. Since in practice we are interested in finding if the two strings are "close enough", it often does not make sense to continue the calculation once the result is mathematically guaranteed to exceed a desired threshold. Providing this value to theDistance function allows it to take a shortcut and return a lower bound instead of an exact cost when the threshold is exceeded.
TheSimilarity function calculates the distance, then converts it into a normalized metric within the range 0..1, with 1 meaning the strings are identical, and 0 that they have nothing in common. A minimum similarity threshold can be provided to speed up the calculation of the metric for strings that are far too dissimilar for the purpose at hand. All values under this threshold are rounded down to 0.
TheMatch function provides a similarity metric, with the same range and meaning asSimilarity, but with a bonus for string pairs that share a common prefix and have a similarity above a "bonus threshold". It uses the same method as proposed by Winkler for the Jaro distance, and the reasoning behind it is that these string pairs are very likely spelling variations or errors, and they are more closely linked than the edit distance alone would suggest.
The underlyingCalculate function is also exported, to allow the building of other derivative metrics, if needed.
go get github.com/agext/levenshteinPackage levenshtein is released under the Apache 2.0 license. See theLICENSE file for details.
About
Levenshtein distance and similarity metrics with customizable edit costs and Winkler-like bonus for common prefix.
Topics
Resources
License
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Packages0
Uh oh!
There was an error while loading.Please reload this page.