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.
|
- # -*-coding:utf-8 -*-
- """
- gklearn
-
- 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
- """
-
- # info
- __version__ = "0.1"
- __author__ = "Benoit Gaüzère"
- __date__ = "November 2017"
-
- # import sub modules
- # from gklearn import c_ext
- # from gklearn import ged
- # from gklearn import utils
|