Obtain the ArXiv Benchmark dataset
mainThe ArXiv benchmark dataset consists of 1000 papers organized by author, category, date, and full text. You can obtain the dataset in two ways:
- Download the full dataset directly: Use the provided OneDrive link.
- Run the download script: Use the
download_arxiv_files.pyscript located in the benchmark directory to download and organize the files locally.
The resulting directory structure follows this pattern:
├── by_author/
│ ├── Aadhrik_Kulia
│ │ ├── 2507.22047v1_fulltext.txt
│ │ └── ...
│ └── ...
├── by_category/
│ ├── cs.AI
│ │ ├── 2505.20278v1_fulltext.txt
│ │ └── ...
│ └── ...
├── by_date/
│ ├── 2025-05
│ │ ├── 2505.20277v2_fulltext.txt
│ │ └── ...
│ └── ...
├── full_text/
│ ├── 2505.20277v2.txt
│ └── ...