Английская Википедия:Graph edit distance

Материал из Онлайн справочника
Перейти к навигацииПерейти к поиску

In mathematics and computer science, graph edit distance (GED) is a measure of similarity (or dissimilarity) between two graphs. The concept of graph edit distance was first formalized mathematically by Alberto Sanfeliu and King-Sun Fu in 1983.[1] A major application of graph edit distance is in inexact graph matching, such as error-tolerant pattern recognition in machine learning.[2]

The graph edit distance between two graphs is related to the string edit distance between strings. With the interpretation of strings as connected, directed acyclic graphs of maximum degree one, classical definitions of edit distance such as Levenshtein distance,[3][4] Hamming distance[5] and Jaro–Winkler distance may be interpreted as graph edit distances between suitably constrained graphs. Likewise, graph edit distance is also a generalization of tree edit distance between rooted trees.[6][7][8][9]

Formal definitions and properties

The mathematical definition of graph edit distance is dependent upon the definitions of the graphs over which it is defined, i.e. whether and how the vertices and edges of the graph are labeled and whether the edges are directed. Generally, given a set of graph edit operations (also known as elementary graph operations), the graph edit distance between two graphs <math>g_{1}</math> and <math>g_{2}</math>, written as <math>GED(g_{1},g_{2})</math> can be defined as

<math> GED(g_{1},g_{2}) = \min_{(e_{1},...,e_{k}) \in \mathcal{P}(g_{1},g_{2})} \sum_{i=1}^{k} c(e_{i})</math>

where <math>\mathcal{P}(g_{1},g_{2})</math> denotes the set of edit paths transforming <math>g_{1}</math> into (a graph isomorphic to) <math>g_{2}</math> and <math>c(e) \ge 0</math> is the cost of each graph edit operation <math>e</math>.

The set of elementary graph edit operators typically includes:

vertex insertion to introduce a single new labeled vertex to a graph.
vertex deletion to remove a single (often disconnected) vertex from a graph.
vertex substitution to change the label (or color) of a given vertex.
edge insertion to introduce a new colored edge between a pair of vertices.
edge deletion to remove a single edge between a pair of vertices.
edge substitution to change the label (or color) of a given edge.

Additional, but less common operators, include operations such as edge splitting that introduces a new vertex into an edge (also creating a new edge), and edge contraction that eliminates vertices of degree two between edges (of the same color). Although such complex edit operators can be defined in terms of more elementary transformations, their use allows finer parameterization of the cost function <math>c</math> when the operator is cheaper than the sum of its constituents.

A deep analysis of the elementary graph edit operators is presented in [10][11][12]

And some methods have been presented to automatically deduce these elementary graph edit operators.[13][14][15][16][17] And some algorithms learn these costs online:[18]

Applications

Graph edit distance finds applications in handwriting recognition,[19] fingerprint recognition[20] and cheminformatics.[21]

Algorithms and complexity

Exact algorithms for computing the graph edit distance between a pair of graphs typically transform the problem into one of finding the minimum cost edit path between the two graphs. The computation of the optimal edit path is cast as a pathfinding search or shortest path problem, often implemented as an A* search algorithm.

In addition to exact algorithms, a number of efficient approximation algorithms are also known. Most of them have cubic computational time [22][23] [24] [25] [26]

Moreover, there is an algorithm that deduces an approximation of the GED in linear time [27]

Despite the above algorithms sometimes working well in practice, in general the problem of computing graph edit distance is NP-hard (for a proof that's available online, see Section 2 of Zeng et al.), and is even hard to approximate (formally, it is APX-hard[28]).

References

Шаблон:Reflist