Skip to content

GraphGallery 0.1.12

Compare
Choose a tag to compare
@EdisonLeeeee EdisonLeeeee released this 26 Aug 11:09
· 640 commits to master since this release

Changelogs

  • update docstrings
  • rewrite dataset API
    you can load the dataset like
from graphgallery.data import Planetoid, NPZDataset
data = Planetoid('cora',, verbose=True)
# data = NPZDataset('cora', verbose=True)
adj, x, labels = data.graph.unpack()
idx_train, idx_val, idx_test = data.split()