Unverified Commit 303e4236 authored by xiang song(charlie.song)'s avatar xiang song(charlie.song) Committed by GitHub
Browse files

Hot Fix docstring (#1907)


Co-authored-by: default avatarUbuntu <ubuntu@ip-172-31-51-214.ec2.internal>
parent b347590a
...@@ -345,7 +345,7 @@ class CoraGraphDataset(CitationGraphDataset): ...@@ -345,7 +345,7 @@ class CoraGraphDataset(CitationGraphDataset):
Examples Examples
-------- --------
>>> dataset = CoraGraphDataset() >>> dataset = CoraGraphDataset()
>>> g = dataset.graph >>> g = dataset[0]
>>> num_class = g.num_labels >>> num_class = g.num_labels
>>> >>>
>>> # get node feature >>> # get node feature
...@@ -470,7 +470,7 @@ class CiteseerGraphDataset(CitationGraphDataset): ...@@ -470,7 +470,7 @@ class CiteseerGraphDataset(CitationGraphDataset):
Examples Examples
-------- --------
>>> dataset = CiteseerGraphDataset() >>> dataset = CiteseerGraphDataset()
>>> g = dataset.graph >>> g = dataset[0]
>>> num_class = g.num_labels >>> num_class = g.num_labels
>>> >>>
>>> # get node feature >>> # get node feature
...@@ -592,7 +592,7 @@ class PubmedGraphDataset(CitationGraphDataset): ...@@ -592,7 +592,7 @@ class PubmedGraphDataset(CitationGraphDataset):
Examples Examples
-------- --------
>>> dataset = PubmedGraphDataset() >>> dataset = PubmedGraphDataset()
>>> g = dataset.graph >>> g = dataset[0]
>>> num_class = g.num_of_class >>> num_class = g.num_of_class
>>> >>>
>>> # get node feature >>> # get node feature
......
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