CoraGraphDataset¶
-
class
dgl.data.
CoraGraphDataset
(raw_dir=None, force_reload=False, verbose=True, reverse_edge=True, transform=None)[source]¶ Bases:
dgl.data.citation_graph.CitationGraphDataset
Cora citation network dataset.
-
Deprecated since version 0.5.0:
graph
is deprecated, it is replaced by:>>> dataset = CoraGraphDataset() >>> graph = dataset[0]
train_mask
is deprecated, it is replaced by:>>> dataset = CoraGraphDataset() >>> graph = dataset[0] >>> train_mask = graph.ndata['train_mask']
val_mask
is deprecated, it is replaced by:>>> dataset = CoraGraphDataset() >>> graph = dataset[0] >>> val_mask = graph.ndata['val_mask']
test_mask
is deprecated, it is replaced by:>>> dataset = CoraGraphDataset() >>> graph = dataset[0] >>> test_mask = graph.ndata['test_mask']
labels
is deprecated, it is replaced by:>>> dataset = CoraGraphDataset() >>> graph = dataset[0] >>> labels = graph.ndata['label']
feat
is deprecated, it is replaced by:>>> dataset = CoraGraphDataset() >>> graph = dataset[0] >>> feat = graph.ndata['feat']
Nodes mean paper and edges mean citation relationships. Each node has a predefined feature with 1433 dimensions. The dataset is designed for the node classification task. The task is to predict the category of certain paper.
Statistics:
Nodes: 2708
Edges: 10556
Number of Classes: 7
Label split:
Train: 140
Valid: 500
Test: 1000
- Parameters
raw_dir (str) – Raw file directory to download/contains the input data directory. Default: ~/.dgl/
force_reload (bool) – Whether to reload the dataset. Default: False
verbose (bool) – Whether to print out progress information. Default: True.
reverse_edge (bool) – Whether to add reverse edges in graph. Default: True.
transform (callable, optional) – A transform that takes in a
DGLGraph
object and returns a transformed version. TheDGLGraph
object will be transformed before every access.
-
graph
¶ Graph structure
- Type
-
train_mask
¶ Mask of training nodes
- Type
-
val_mask
¶ Mask of validation nodes
- Type
-
test_mask
¶ Mask of test nodes
- Type
-
labels
¶ Ground truth labels of each node
- Type
-
features
¶ Node features
- Type
Tensor
Notes
The node feature is row-normalized.
Examples
>>> dataset = CoraGraphDataset() >>> g = dataset[0] >>> num_class = dataset.num_classes >>> >>> # get node feature >>> feat = g.ndata['feat'] >>> >>> # get data split >>> train_mask = g.ndata['train_mask'] >>> val_mask = g.ndata['val_mask'] >>> test_mask = g.ndata['test_mask'] >>> >>> # get labels >>> label = g.ndata['label']
-
__getitem__
(idx)[source]¶ Gets the graph object
- Parameters
idx (int) – Item index, CoraGraphDataset has only one graph object
- Returns
graph structure, node features and labels.
ndata['train_mask']
: mask for training node setndata['val_mask']
: mask for validation node setndata['test_mask']
: mask for test node setndata['feat']
: node featurendata['label']
: ground truth labels
- Return type