"docs/git@developer.sourcefind.cn:OpenDAS/dgl.git" did not exist on "6383e649377173b76da842f7a60fce301bf130c1"
Unverified Commit 7af522db authored by Rhett Ying's avatar Rhett Ying Committed by GitHub
Browse files

[GraphBolt] add BuiltinDataset of ogbn-arxiv (#6591)

parent 19c6491b
...@@ -521,6 +521,16 @@ class BuiltinDataset(OnDiskDataset): ...@@ -521,6 +521,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-arxiv**
The ogbn-arxiv dataset is a directed graph, representing the citation
network between all Computer Science (CS) arXiv papers indexed by MAG.
See more details in `ogbn-arxiv
https://ogb.stanford.edu/docs/nodeprop/#ogbn-arxiv>`_.
.. 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
...@@ -558,6 +568,7 @@ class BuiltinDataset(OnDiskDataset): ...@@ -558,6 +568,7 @@ class BuiltinDataset(OnDiskDataset):
"ogbn-mag", "ogbn-mag",
"ogbl-citation2", "ogbl-citation2",
"ogbn-products", "ogbn-products",
"ogbn-arxiv",
] ]
_large_datasets = ["ogb-lsc-mag240m"] _large_datasets = ["ogb-lsc-mag240m"]
_all_datasets = _datasets + _large_datasets _all_datasets = _datasets + _large_datasets
......
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