Spaces:
Running
Running
File size: 866 Bytes
21d52e5 cebb5be e1b3e4a 66af8e3 81580d4 e6ff9dc 244d41c e1b3e4a 81580d4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
---
title: README
emoji: 🏢
colorFrom: purple
colorTo: gray
sdk: static
pinned: false
---
The goal of this repository is to store the different graph datasets currently available as benchmarks, to provide them in an homogeneous and easily loadable way. For example, to load them in PyGeometric, you can do the following:
```python
from datasets import load_dataset
from torch_geometric.data import Data
from torch_geometric.loader import DataLoader
graphs_dataset = load_dataset("graphs-datasets/<dataset-name>")
# For the train set (replace by valid or test as needed)
graphs_list = [Data(graph) for graph in graphs_dataset["train"]]
graphs_pygeometric = DataLoader(graph_list)
```
Currently available graphs are:
<strong> Open Graph Benchmark </strong>, graph classification task: <em> ogbg-molhiv, ogbg-molpcba, ogbg-ppa, ogbg-code2 </em>
- More to come! |