Browse Source

Add datasets metadata.

v0.2.x
jajupmochi 4 years ago
parent
commit
052356d39a
2 changed files with 2504 additions and 0 deletions
  1. +19
    -0
      gklearn/dataset/__init__.py
  2. +2485
    -0
      gklearn/dataset/metadata.py

+ 19
- 0
gklearn/dataset/__init__.py View File

@@ -0,0 +1,19 @@
# -*-coding:utf-8 -*-
"""gklearn - datasets module

Implement some methods to manage graph datasets
graph_fetcher.py : fetch graph datasets from the Internet.


"""

# info
__version__ = "0.2"
__author__ = "Linlin Jia"
__date__ = "October 2020"


from gklearn.dataset.metadata import DATABASES, DATASET_META
from gklearn.dataset.metadata import GREYC_META, IAM_META, TUDataset_META
from gklearn.dataset.metadata import list_of_databases, list_of_datasets
from gklearn.dataset.data_fetcher import DataFetcher

+ 2485
- 0
gklearn/dataset/metadata.py
File diff suppressed because it is too large
View File


Loading…
Cancel
Save