@@ -1,5 +1,4 @@ | |||||
# -*-coding:utf-8 -*- | # -*-coding:utf-8 -*- | ||||
""" | """ | ||||
Pygraph | Pygraph | ||||
@@ -9,20 +8,14 @@ This package contains 4 sub packages : | |||||
* kernels : computation of graph kernels, ie graph similarity measure compatible with SVM | * kernels : computation of graph kernels, ie graph similarity measure compatible with SVM | ||||
* notebooks : examples of code using this library | * notebooks : examples of code using this library | ||||
* utils : Diverse computation on graphs | * utils : Diverse computation on graphs | ||||
je vous passe le blabla | |||||
""" | """ | ||||
# info | # info | ||||
__version__ = "0.1" | __version__ = "0.1" | ||||
__author__ = "Benoit Gaüzère" | __author__ = "Benoit Gaüzère" | ||||
__date__ = "November 2017" | __date__ = "November 2017" | ||||
# import sub modules | # 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 | |||||
from pygraph import c_ext | |||||
from pygraph import ged | |||||
from pygraph import utils |
@@ -0,0 +1,17 @@ | |||||
# -*-coding:utf-8 -*- | |||||
"""Pygraph - c_ext module | |||||
This package binds some C++ code to python | |||||
lsape_binders.py : binders to C++ code of LSAPE methods implemented in | |||||
https://bougleux.users.greyc.fr/lsape/ | |||||
""" | |||||
# info | |||||
__version__ = "0.1" | |||||
__author__ = "Benoit Gaüzère" | |||||
__date__ = "November 2017" | |||||
# import sub modules | |||||
from pygraph.c_ext import lsape_binders |
@@ -0,0 +1,17 @@ | |||||
# -*-coding:utf-8 -*- | |||||
"""Pygraph - ged module | |||||
Implement some methods to compute ged between graphs | |||||
""" | |||||
# info | |||||
__version__ = "0.1" | |||||
__author__ = "Benoit Gaüzère" | |||||
__date__ = "November 2017" | |||||
from pygraph.ged import costfunctions | |||||
from pygraph.ged import bipartiteGED | |||||
from pygraph.ged import GED | |||||
@@ -0,0 +1,17 @@ | |||||
# -*-coding:utf-8 -*- | |||||
"""Pygraph - utils module | |||||
Implement some methods to manage graphs | |||||
graphfiles.py : load .gxl and .ct files | |||||
utils.py : compute some properties on networkX graphs | |||||
""" | |||||
# info | |||||
__version__ = "0.1" | |||||
__author__ = "Benoit Gaüzère" | |||||
__date__ = "November 2017" | |||||
from pygraph.utils import graphfiles | |||||
from pygraph.utils import utils |