File size: 1,188 Bytes
2363a53
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9d3e292
9dc103a
9d3e292
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Arxiv

### Dataset Description

The Arxiv dataset is a citation network. Nodes represent the papers. Text on node is based on the nodes' titles and abstracts including following information: `The paper titled '[Title]' presents [Abstract], highlighting the key contributions and findings of the research.`. Edges represent citation relationships between papers. Text on an edge represents the context of the referenced target node from the edge's source node.

## Graph Machine Learning Tasks

### Link Prediction
Link prediction in the Arxiv dataset involves predicting potential connections between papers.  The goal is to predict whether a paper will cite another paper.

### Node Classification
Node classification tasks in the arxiv dataset include predicting the paper's category. 


## Data references

* Kuansan Wang, Zhihong Shen, Chiyuan Huang, Chieh-Han Wu, Yuxiao Dong, and Anshul Kanakia.Microsoft academic graph: When experts are not enough. Quantitative Science Studies, 1(1):396–413, 2020

You can directly get the raw dataset from following codes:

```python
from ogb.nodeproppred import PygNodePropPredDataset
dataset = PygNodePropPredDataset(name='ogbn-arxiv')
```