# 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') ```