AlgorithmicResearchGroup/s2orc_arxiv
S2ORC ArXiv A subset of the Semantic Scholar Open Research Corpus (S2ORC) filtered to ArXiv papers. Contains 2.58 million parsed scientific papers with full text, abstracts, structured sections, figures, and citation metadata. Dataset Summary Statistic Value Total papers 2,579,762 Total size ~266 GB Format Parquet Split train Dataset Structure Content Fields Field Type Description title string Paper… See the full description on the dataset page: https://huggingface.co/datasets/AlgorithmicResearchGroup/s2orc_arxiv.
S2ORC ArXiv
A subset of the Semantic Scholar Open Research Corpus (S2ORC) filtered to ArXiv papers. Contains 2.58 million parsed scientific papers with full text, abstracts, structured sections, figures, and citation metadata.
Dataset Summary
Dataset Structure
Content Fields
Identifier Fields
Source & Access Fields
Usage
from datasets import load_dataset
# stream to avoid downloading 266GB
ds = load_dataset("AlgorithmicResearchGroup/s2orc_arxiv", streaming=True, split="train")
for paper in ds:
print(paper["title"], len(paper["sections"]), "sections")
breakRelated Resources
- S2ORC CS Enriched - CS subset with LLM-generated enrichments
- Algorithmic Research Group - Open Source
Citation
@misc{s2orc_arxiv,
title={S2ORC ArXiv},
author={Algorithmic Research Group},
year={2024},
publisher={Hugging Face},
url={https://huggingface.co/datasets/AlgorithmicResearchGroup/s2orc_arxiv}
}