"tests/python/vscode:/vscode.git/clone" did not exist on "9aca30923d9053f35cc23ea0d910ac1642528904"
Unverified Commit 3ced3411 authored by caojy1998's avatar caojy1998 Committed by GitHub
Browse files

[Dataset] Add dataset ogbn-papers100M (#7096)


Co-authored-by: default avatarUbuntu <ubuntu@ip-172-31-21-37.ap-northeast-1.compute.internal>
parent 2df85862
...@@ -877,6 +877,16 @@ class BuiltinDataset(OnDiskDataset): ...@@ -877,6 +877,16 @@ class BuiltinDataset(OnDiskDataset):
Reverse edges are added to the original graph and duplicated Reverse edges are added to the original graph and duplicated
edges are removed. edges are removed.
**ogbn-papers100M**
The ogbn-papers100M dataset is a directed graph, representing the citation
network between all Computer Science (CS) arXiv papers indexed by MAG.
See more details in `ogbn-papers100M
<https://ogb.stanford.edu/docs/nodeprop/#ogbn-papers100M>`_.
.. note::
Reverse edges are added to the original graph and duplicated
edges are removed.
**ogbn-products** **ogbn-products**
The ogbn-products dataset is an undirected and unweighted graph, The ogbn-products dataset is an undirected and unweighted graph,
representing an Amazon product co-purchasing network. See more details representing an Amazon product co-purchasing network. See more details
...@@ -916,7 +926,7 @@ class BuiltinDataset(OnDiskDataset): ...@@ -916,7 +926,7 @@ class BuiltinDataset(OnDiskDataset):
"ogbn-products", "ogbn-products",
"ogbn-arxiv", "ogbn-arxiv",
] ]
_large_datasets = ["ogb-lsc-mag240m"] _large_datasets = ["ogb-lsc-mag240m", "ogbn-papers100M"]
_all_datasets = _datasets + _large_datasets _all_datasets = _datasets + _large_datasets
def __init__(self, name: str, root: str = "datasets") -> OnDiskDataset: def __init__(self, name: str, root: str = "datasets") -> OnDiskDataset:
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment