A Python library for graph kernels, graph edit distances, and graph pre-images
Project description
graphkit-learn
A Python package for graph kernels, graph edit distances and graph pre-image problem.
Requirements
- python>=3.6
- numpy>=1.16.2
- scipy>=1.1.0
- matplotlib>=3.1.0
- networkx>=2.2
- scikit-learn>=0.20.0
- tabulate>=0.8.2
- tqdm>=4.26.0
- control>=0.8.2 (for generalized random walk kernels only)
- slycot>=0.3.3 (for generalized random walk kernels only, which requires a fortran compiler (e.g.,
gfortran
) and BLAS/LAPACK (e.g.liblapack-dev
))
How to use?
Install the library
- Install stable version from PyPI (may not be up-to-date):
$ pip install graphkit-learn
- Install latest version from GitHub:
$ git clone https://github.com/jajupmochi/graphkit-learn.git
$ cd graphkit-learn/
$ python setup.py install
Run the test
A series of tests can be run to check if the library works correctly:
$ pip install -U pip pytest codecov coverage pytest-cov
$ pytest -v --cov-config=.coveragerc --cov-report term --cov=gklearn gklearn/tests/
Check examples
A series of demos of using the library can be found on Google Colab and in the example
folder.
Other demos
Check notebooks
directory for more demos:
notebooks
directory includes test codes of graph kernels based on linear patterns;notebooks/tests
directory includes codes that test some libraries and functions;notebooks/utils
directory includes some useful tools, such as a Gram matrix checker and a function to get properties of datasets;notebooks/else
directory includes other codes that we used for experiments.
Documentation
The docs of the library can be found here.
Main contents
1 List of graph kernels
- Based on walks
- The common walk kernel [1]
- Exponential
- Geometric
- The marginalized kernel
- With tottering [2]
- Without tottering [7]
- The generalized random walk kernel [3]
- Sylvester equation
- Conjugate gradient
- Fixed-point iterations
- Spectral decomposition
- The common walk kernel [1]
- Based on paths
- The shortest path kernel [4]
- The structural shortest path kernel [5]
- The path kernel up to length h [6]
- The Tanimoto kernel
- The MinMax kernel
- Non-linear kernels
A demo of computing graph kernels can be found on Google Colab and in the examples
folder.
2 Graph Edit Distances
3 Graph preimage methods
A demo of generating graph preimages can be found on Google Colab and in the examples
folder.
4 Interface to GEDLIB
GEDLIB
is an easily extensible C++ library for (suboptimally) computing the graph edit distance between attributed graphs. A Python interface for GEDLIB
is integrated in this library, based on gedlibpy
library.
5 Computation optimization methods
- Python’s
multiprocessing.Pool
module is applied to perform parallelization on the computations of all kernels as well as the model selection. - The Fast Computation of Shortest Path Kernel (FCSP) method [8] is implemented in the random walk kernel, the shortest path kernel, as well as the structural shortest path kernel where FCSP is applied on both vertex and edge kernels.
- The trie data structure [9] is employed in the path kernel up to length h to store paths in graphs.
Issues
-
This library uses
multiprocessing.Pool.imap_unordered
function to do the parallelization, which may not be able to run correctly under Windows system. For now, Windows users may need to comment the parallel codes and uncomment the codes below them which run serially. We will consider adding a parameter to control serial or parallel computations as needed. -
Some modules (such as
Numpy
,Scipy
,sklearn
) applyOpenBLAS
to perform parallel computation by default, which causes conflicts with other parallelization modules such asmultiprossing.Pool
, highly increasing the computing time. By setting its thread to 1,OpenBLAS
is forced to use a single thread/CPU, thus avoids the conflicts. For now, this procedure has to be done manually. Under Linux, type this command in terminal before running the code:
$ export OPENBLAS_NUM_THREADS=1
Or add export OPENBLAS_NUM_THREADS=1
at the end of your ~/.bashrc
file, then run
$ source ~/.bashrc
to make this effective permanently.
Results
Check this paper for detailed description of graph kernels and experimental results:
Linlin Jia, Benoit Gaüzère, and Paul Honeine. Graph Kernels Based on Linear Patterns: Theoretical and Experimental Comparisons. working paper or preprint, March 2019. URL https://hal-normandie-univ.archives-ouvertes.fr/hal-02053946.
A comparison of performances of graph kernels on benchmark datasets can be found here.
How to contribute
Fork the library and open a pull request! Make your own contribute to the community!
Authors
- Linlin Jia, LITIS, INSA Rouen Normandie
- Benoit Gaüzère, LITIS, INSA Rouen Normandie
- Paul Honeine, LITIS, Université de Rouen Normandie
Citation
If you have used graphkit-learn
in your publication, please cite the the following paper:
@article{JIA2021,
title = "graphkit-learn: A Python Library for Graph Kernels Based on Linear Patterns",
journal = "Pattern Recognition Letters",
year = "2021",
issn = "0167-8655",
doi = "https://doi.org/10.1016/j.patrec.2021.01.003",
url = "http://www.sciencedirect.com/science/article/pii/S0167865521000131",
author = "Linlin Jia and Benoit Gaüzère and Paul Honeine",
keywords = "Graph Kernels, Linear Patterns, Python Implementation",
abstract = "This paper presents graphkit-learn, the first Python library for efficient computation of graph kernels based on linear patterns, able to address various types of graphs. Graph kernels based on linear patterns are thoroughly implemented, each with specific computing methods, as well as two well-known graph kernels based on non-linear patterns for comparative analysis. Since computational complexity is an Achilles’ heel of graph kernels, we provide several strategies to address this critical issue, including parallelization, the trie data structure, and the FCSP method that we extend to other kernels and edge comparison. All proposed strategies save orders of magnitudes of computing time and memory usage. Moreover, all the graph kernels can be simply computed with a single Python statement, thus are appealing to researchers and practitioners. For the convenience of use, an advanced model selection procedure is provided for both regression and classification problems. Experiments on synthesized datasets and 11 real-world benchmark datasets show the relevance of the proposed library."
}
Acknowledgments
This research was supported by CSC (China Scholarship Council) and the French national research agency (ANR) under the grant APi (ANR-18-CE23-0014). The authors would like to thank the CRIANN (Le Centre Régional Informatique et d’Applications Numériques de Normandie) for providing computational resources.
References
[1] Thomas Gärtner, Peter Flach, and Stefan Wrobel. On graph kernels: Hardness results and efficient alternatives. Learning Theory and Kernel Machines, pages 129–143, 2003.
[2] H. Kashima, K. Tsuda, and A. Inokuchi. Marginalized kernels between labeled graphs. In Proceedings of the 20th International Conference on Machine Learning, Washington, DC, United States, 2003.
[3] Vishwanathan, S.V.N., Schraudolph, N.N., Kondor, R., Borgwardt, K.M., 2010. Graph kernels. Journal of Machine Learning Research 11, 1201–1242.
[4] K. M. Borgwardt and H.-P. Kriegel. Shortest-path kernels on graphs. In Proceedings of the International Conference on Data Mining, pages 74-81, 2005.
[5] Liva Ralaivola, Sanjay J Swamidass, Hiroto Saigo, and Pierre Baldi. Graph kernels for chemical informatics. Neural networks, 18(8):1093–1110, 2005.
[6] Suard F, Rakotomamonjy A, Bensrhair A. Kernel on Bag of Paths For Measuring Similarity of Shapes. InESANN 2007 Apr 25 (pp. 355-360).
[7] Mahé, P., Ueda, N., Akutsu, T., Perret, J.L., Vert, J.P., 2004. Extensions of marginalized graph kernels, in: Proc. the twenty-first international conference on Machine learning, ACM. p. 70.
[8] Lifan Xu, Wei Wang, M Alvarez, John Cavazos, and Dongping Zhang. Parallelization of shortest path graph kernels on multi-core cpus and gpus. Proceedings of the Programmability Issues for Heterogeneous Multicores (MultiProg), Vienna, Austria, 2014.
[9] Edward Fredkin. Trie memory. Communications of the ACM, 3(9):490–499, 1960.
[10] Gaüzere, B., Brun, L., Villemin, D., 2012. Two new graphs kernels in chemoinformatics. Pattern Recognition Letters 33, 2038–2047.
[11] Shervashidze, N., Schweitzer, P., Leeuwen, E.J.v., Mehlhorn, K., Borgwardt, K.M., 2011. Weisfeiler-lehman graph kernels. Journal of Machine Learning Research 12, 2539–2561.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
File details
Details for the file graphkit_learn-0.2.1.post20230420115000-py3-none-any.whl
.
File metadata
- Download URL: graphkit_learn-0.2.1.post20230420115000-py3-none-any.whl
- Upload date:
- Size: 338.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b551c201cb620a3aba2867bdfb97925e5e651356f25db1ff27b423d12775715f |
|
MD5 | 64aec339ae6619ff4b15ca0e31ca5720 |
|
BLAKE2b-256 | cf599f47f0983b826720dc17f314688f2c11249a6d28c9ee3447f296cd734f7a |