Mining Frequent Closed Subgraphs in a Graph Database using the CloseGraph algorithm (SPMF documentation)

This page explains how to run the CloseGraph algorithm using the SPMF open-source data mining library.

What is this algorithm?

CloseGraph is a fast algorithm for discovering frequent closed subgraphs in a graph database. The algorithm was proposed by Yan and Han (2003).

There are several algorithms for discovering frequent subgraphs such as gSpan and TKG to name a few. The advantage of CloseGraph over traditional subgraph mining algorithms is that it finds only the frequent closed subgraphs. The closed subgraphs are interesting because they provide a summary of all frequent subgraphs that is often much smaller than the set of all subgraphs, and it can be shown that no information is lost. Moreover, mining frequent closed subgraphs can be much faster than mining all frequent subgraphs. CloseGraph is one of the most efficient algorithms for mining closed subgraphs, and is based on gSpan.

How to run this example?

If you want to mine frequent closed subgraphs in a graph database:

What is the input of the algorithm?

The input is a set of labeled connected graphs and a threshold named minsup (a value between 0 and 100 %). Moreover, a few optional parameters can be set, which will be described further down this page.

To explain the input more clearly, some definitions are first introduced. A labeled graph is a set of vertices and edges, having some labels. Let’s me illustrate this idea with an example. Consider the following graph:

graph

This graph contains four vertices (depicted as yellow circles). These vertices have labels such as “10” and “11”.  These labels provide information about the vertices. For example, imagine that this graph is a  chemical molecule. The label 10 and 11 could represent the chemical elements of Hydrogen and Oxygen, respectively. Labels do not need to be unique. In other words, the same labels may be used to describe several vertices in the same graph. For example, if the above graph represents a chemical molecule, the labels “10” and “11” could be used for all vertices representing Oxygen and Hydrogen, respectively.

Now, besides vertices, a graph also contains edges. The edges are the lines between the vertices, here represented by thick black lines.  Edges also have some labels. In this example, four labels are used, which are 20, 21, 22 and 23.  These labels represents different types of relationships between vertices. Edge labels do not need to be unique. A graph is a connected graph if by following the edges, it is possible to go from any vertex to any other vertices. 

The goal of frequent subgraph mining is to discover interesting subgraph(s) appearing in a set of graphs (a graph database). But how can we judge if a subgraph is interesting?  This depends on the application. The interestingness can be defined in various ways. Traditionally, a subgraph has been considered as interesting if it appears multiple times in a set of graphs. In other words, we want to discover subgraphs that are common to multiple graphs. This can be useful for example to find association between chemical elements common to several chemical molecules.

The algorithm takes a graph database as input. Then, a frequent subgraph mining algorithm will enumerate as output all frequent subgraphs. A frequent subgraph is a subgraph that appears in at least minsup percents of the graphs from the graph database.  For example, let’s consider the following graph database containing three graphs, which is provided in the file contextTKG.txt of the SPMF distribution.

graph database

This database contains three graphs, respectively called Graph 1, 2 and 3.

What is the output of the algorithm?

The output of a traditional frequent subgraph mining algorithm is the set of all frequent subgraphs. A frequent subgraph is a subgraph that appears in at least minsup percent of the graphs of the input graph database, and their support values. In this example, consider that the minsup parameter is set to 90 % (which means that frequent subgraphs must appear in at least 3 graphs of the input database since 90 % * 3 = 3). If we apply a traditional subgraph mining algorithm like gSpan, then three frequent subgraphs would be found:

frequent subgraphs

Consider the third subgraph (“Frequent subgraph 3”).  This subgraph is frequent and is said to have a support (a frequency) of 3 since it appears in three of the input graphs. These occurrences are highlighted in red, below:

subgraph highlight

In this example "Frequent subgraph 1" and "Frequent subgraph 2" also have a support of 3. Note that the support of a graph can be also expressed as a percentage. Since these subgraphs appear in three input graphs and the input database contains three graphs, the support of these subgraphs expressed as a percentage is 3 / 3 = 1 (which means 100 %).

But a problem with traditional frequent subgraph mining algorithms is that a very large number of subgraphs may be found, and some can be viewed as redundant.

To address this problems,  CloseGraph only discovers the frequent closed subgraphs rather than all frequent subgraphs.

A frequent closed subgraph is a frequent subgraph that has no supergraph having the same support. It can be shown that by only discovering the closed subgraphs, a much smaller result set can be usually found compared to all frequent subgraphs and that no information is loss. The set of frequent closed subgraphs for this example is:

frequent closed subgraphs
Thus, CloseGraph outputs a single frequent closed subgraph instead of the three frequent subgraphs.

The two key advantages of mining frequent closed subgraphs is that (1) it is often faster than mining all frequent subgraphs, and (2) no information is loss (all frequent subgraphs could be derived from the frequent closed subgraphs). 

Optional parameters

This implementation of CloseGraph also has four optional parameters:

The optional parameter can be specified in the graphical user interface of SPMF, but also when running SPMF from the command line. For example, to call CloseGraph from the command line with minsup = 0.9, maxNumberOfEdges = 2, outputSingleFrequentVertices = true, outputDotFile = false, and outputGraphIds = true, the command can be written as follows:

java -jar spmf.jar run CloseGraph contextTKG.txt output.txt 0.9 2 true false true

Input file format

The input file format is defined as follows. It is a text file which contains one or more graphs.  A graph is defined by a few lines of text that follow the following format:

For the above example, the input file is defined as follows:

@FILETYPE="Labeled graph database"
@SOURCE="SPMF SOFTWARE https://philippe-fournier-viger.com/spmf/"
t # 0
v 0 10
v 1 11
v 2 10
v 3 11
e 0 1 20
e 1 2 23
e 1 3 22

t # 1
v 4 10
v 5 11
e 4 5 20

t # 2
v 6 10
v 7 10
v 8 11
v 9 11
e 6 7 21
e 7 8 23
e 7 9 20
e 8 9 22

The first two lines are metadata indicating the type of data and the source of the data.

Output file format

The output file format is defined as follows. It is a text file, listing all the frequent closed subgraphs found in the input graph database. A frequent closed subgraph is defined by a few lines of text that follow the following format:

For example, for the above example, the output is:

t # 0 * 3
v 0 10
v 1 11
e 0 1 20
x 0 1 2

If the optional parameter outputGraphIds is set to false, the "x" line is omitted from the output, as shown below:

t # 0 * 3
v 0 10
v 1 11
e 0 1 20

Performance

The CloseGraph algorithm is an important algorithm that is efficient and has inspired several other algorithms. This implementation is optimized and includes a few optimizations to increase efficiency.

Where can I get more information about the algorithm?

This is the article describing the CloseGraph algorithm:

Xifeng Yan and Jiawei Han. 2003. CloseGraph: mining closed frequent graph patterns. In Proceedings of the ninth ACM SIGKDD international conference on Knowledge discovery and data mining (KDD '03).