AnacletoLAB / grape

🍇 GRAPE is a Rust/Python Graph Representation Learning library for Predictions and Evaluations

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Feature request: method to display all available versions of a graph

justaddcoffee opened this issue · comments

It would be handy to know what versions of a graph are available, especially for KG-Hub projects.

For example, it'd be nice to be able to do this:

from grape.datasets.kghub import KGCOVID19
KGCOVID19.versions()

and then choose a KG build to load

Adding - this functionality is kinda already implemented:

from grape import datasets
df = datasets.get_all_available_graphs_dataframe()
df[df['name']=='KGCOVID19']