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

1234567891011121314151617
  1. # -*-coding:utf-8 -*-
  2. """Pygraph - ged module
  3. Implement some methods to compute ged between graphs
  4. """
  5. # info
  6. __version__ = "0.1"
  7. __author__ = "Benoit Gaüzère"
  8. __date__ = "November 2017"
  9. from pygraph.ged import costfunctions
  10. from pygraph.ged import bipartiteGED
  11. from pygraph.ged import GED

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