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 708 B

12345678910111213141516171819202122232425262728
  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. je vous passe le blabla
  11. """
  12. # info
  13. __version__ = "0.1"
  14. __author__ = "Benoit Gaüzère"
  15. __date__ = "November 2017"
  16. # import sub modules
  17. from c_ext import lsape_binders
  18. from ged import bipartiteGED
  19. from ged import costfunctions
  20. from ged import GED
  21. from utils import graphfiles
  22. from utils import utils

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