Edit Distance Function

From GM-RKB
(Redirected from edit-distance)
Jump to navigation Jump to search

An Edit Distance Function is a distance function whose Metric Space is based on the number of Edit Operations required to convert one Object into another Object.



References

2015

  • (Wikipedia, 2015) ⇒ http://en.wikipedia.org/wiki/edit_distance Retrieved:2015-8-17.
    • In computer science, edit distance is a way of quantifying how dissimilar two strings (e.g., words) are to one another by counting the minimum number of operations required to transform one string into the other. Edit distances find applications in natural language processing, where automatic spelling correction can determine candidate corrections for a misspelled word by selecting words from a dictionary that have a low distance to the word in question. In bioinformatics, it can be used to quantify the similarity of macromolecules such as DNA, which can be viewed as strings of the letters A, C, G and T.

      Several definitions of edit distance exist, using different sets of string operations. One of the most common variants is called Levenshtein distance, named after the Soviet Russian computer scientist Vladimir Levenshtein. In this version, the allowed operations are the removal or insertion of a single character, or the substitution of one character for another. Levenshtein distance may also simply be called "edit distance", although several variants exist.


2013