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

12345678910111213141516171819
  1. # -*-coding:utf-8 -*-
  2. """gklearn - datasets module
  3. Implement some methods to manage graph datasets
  4. graph_fetcher.py : fetch graph datasets from the Internet.
  5. """
  6. # info
  7. __version__ = "0.2"
  8. __author__ = "Linlin Jia"
  9. __date__ = "October 2020"
  10. from gklearn.dataset.metadata import DATABASES, DATASET_META
  11. from gklearn.dataset.metadata import GREYC_META, IAM_META, TUDataset_META
  12. from gklearn.dataset.metadata import list_of_databases, list_of_datasets
  13. from gklearn.dataset.data_fetcher import DataFetcher

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