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

5 years ago
1234567891011121314151617181920
  1. # -*-coding:utf-8 -*-
  2. """gklearn - kernels module
  3. """
  4. # info
  5. __version__ = "0.1"
  6. __author__ = "Linlin Jia"
  7. __date__ = "November 2018"
  8. from gklearn.kernels.graph_kernel import GraphKernel
  9. from gklearn.kernels.common_walk import CommonWalk
  10. from gklearn.kernels.marginalized import Marginalized
  11. from gklearn.kernels.random_walk import RandomWalk
  12. from gklearn.kernels.sylvester_equation import SylvesterEquation
  13. from gklearn.kernels.spectral_decomposition import SpectralDecomposition
  14. from gklearn.kernels.shortest_path import ShortestPath
  15. from gklearn.kernels.structural_sp import StructuralSP
  16. from gklearn.kernels.path_up_to_h import PathUpToH
  17. from gklearn.kernels.treelet import Treelet
  18. from gklearn.kernels.weisfeiler_lehman import WeisfeilerLehman, WLSubtree

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