|
12345678910111213141516171819202122232425262728 |
- # -*-coding:utf-8 -*-
-
- """
- Pygraph
-
- This package contains 4 sub packages :
- * c_ext : binders to C++ code
- * ged : allows to compute graph edit distance between networkX graphs
- * kernels : computation of graph kernels, ie graph similarity measure compatible with SVM
- * notebooks : examples of code using this library
- * utils : Diverse computation on graphs
-
- je vous passe le blabla
-
- """
-
- # info
- __version__ = "0.1"
- __author__ = "Benoit Gaüzère"
- __date__ = "November 2017"
-
- # import sub modules
- from c_ext import lsape_binders
- from ged import bipartiteGED
- from ged import costfunctions
- from ged import GED
- from utils import graphfiles
- from utils import utils
|