Skip to content

loukasa/graph-coarsening

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

graph-coarsening package

Multilevel graph coarsening algorithm with spectral and cut guarantees.

The code accompanies paper Graph reduction with spectral and cut guarantees by Andreas Loukas published at JMLR/2019.

In addition to the introduced variation methods, the code provides implementations of heavy-edge matching, algebraic distance, affinity, and Kron reduction (adapted from pygsp).

Paper abstract

Can one reduce the size of a graph without significantly altering its basic properties? The graph reduction problem is hereby approached from the perspective of restricted spectral approximation, a modification of the spectral similarity measure used for graph sparsification. This choice is motivated by the observation that restricted approximation carries strong spectral and cut guarantees, and that it implies approximation results for unsupervised learning problems relying on spectral embeddings. The article then focuses on coarsening - the most common type of graph reduction. Sufficient conditions are derived for a small graph to approximate a larger one in the sense of restricted approximation. These findings give rise to algorithms that, compared to both standard and advanced graph reduction methods, find coarse graphs of improved quality, often by a large margin, without sacrificing speed.

Contents

There are five python notebooks included under examples:

  • coarsening_demo.ipynb demonstrates how the code can be used with a toy example (see also blogpost).
  • coarsening_methods.ipynb shows the effect of different coarsening methods on a toy example.
  • experiment_approximation.ipynb reproduces the results of Section 5.1.
  • experiment_spectrum.ipynb reproduces the results of Section 5.2.
  • experiment_scalability.ipynb reproduces the results of Section 5.3.

Since I have not fixed the random seed, some small variance should be expected in the experiment output.

Installation instructions:

git clone git@github.com:loukasa/graph-coarsening.git
cd graph-coarsening
pip install .

Dependencies: pygsp, matplotlib, numpy, scipy, sortedcontainers Optional dependency: networkx

Citation

If you use this code, please cite:

@article{JMLR:v20:18-680,
  author  = {Andreas Loukas},
  title   = {Graph Reduction with Spectral and Cut Guarantees},
  journal = {Journal of Machine Learning Research},
  year    = {2019},
  volume  = {20},
  number  = {116},
  pages   = {1-42},
  url     = {http://jmlr.org/papers/v20/18-680.html}
}

Acknowledgements

This work was kindly supported by the Swiss National Science Foundation (grant number PZ00P2 179981). I would like to thank Scott Gigante for helping package the code.

15 May 2020

Andreas Loukas

DOI

Released under the Apache license 2.0

About

Multilevel graph coarsening algorithm with spectral and cut guarantees

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages