You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

__init__.py 590 B

7 years ago
123456789101112131415161718192021
  1. # -*-coding:utf-8 -*-
  2. """
  3. Pygraph
  4. This package contains 4 sub packages :
  5. * c_ext : binders to C++ code
  6. * ged : allows to compute graph edit distance between networkX graphs
  7. * kernels : computation of graph kernels, ie graph similarity measure compatible with SVM
  8. * notebooks : examples of code using this library
  9. * utils : Diverse computation on graphs
  10. """
  11. # info
  12. __version__ = "0.1"
  13. __author__ = "Benoit Gaüzère"
  14. __date__ = "November 2017"
  15. # import sub modules
  16. from pygraph import c_ext
  17. from pygraph import ged
  18. from pygraph import utils

A Python package for graph kernels, graph edit distances and graph pre-image problem.

Contributors (1)