From 6894df66059d6d99df99dda36feaaae7901312b5 Mon Sep 17 00:00:00 2001 From: Ubuntu Date: Wed, 7 Feb 2024 05:30:14 +0000 Subject: [PATCH] 1 --- python/dgl/graphbolt/impl/ondisk_dataset.py | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/python/dgl/graphbolt/impl/ondisk_dataset.py b/python/dgl/graphbolt/impl/ondisk_dataset.py index e636e17e8f31..59ca8ced45b1 100644 --- a/python/dgl/graphbolt/impl/ondisk_dataset.py +++ b/python/dgl/graphbolt/impl/ondisk_dataset.py @@ -727,6 +727,16 @@ class BuiltinDataset(OnDiskDataset): .. note:: Reverse edges are added to the original graph and duplicated 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 + `_. + + .. note:: + Reverse edges are added to the original graph and duplicated + edges are removed. **ogbn-products** The ogbn-products dataset is an undirected and unweighted graph, @@ -766,6 +776,7 @@ class BuiltinDataset(OnDiskDataset): "ogbl-citation2", "ogbn-products", "ogbn-arxiv", + "ogbn-papers100M", ] _large_datasets = ["ogb-lsc-mag240m"] _all_datasets = _datasets + _large_datasets