kishormorol/researchscope-papers
ResearchScope Papers Open CS research paper dataset maintained by ResearchScope. Updated automatically via GitHub Actions. Quick start from datasets import load_dataset ds = load_dataset("kishormorol/researchscope-papers", "papers", split="train") print(ds[0]) See Usage below for per-source splits, instruction-tuning, and the per-section fine-tuning data. Stats 33,467 papers (raw metadata) — 8,467 arXiv · 20,000 conference · 5,000 journal 166,887… See the full description on the dataset page: https://huggingface.co/datasets/kishormorol/researchscope-papers.
ResearchScope Papers
Open CS research paper dataset maintained by ResearchScope.
Updated automatically via GitHub Actions.
Quick start
from datasets import load_dataset
ds = load_dataset("kishormorol/researchscope-papers", "papers", split="train")
print(ds[0])See Usage below for per-source splits, instruction-tuning, and the per-section fine-tuning data.
Stats
- 33,467 papers (raw metadata) — 8,467 arXiv · 20,000 conference · 5,000 journal
- 166,887 instruction-tuning rows
- Sources: arXiv, OpenAlex, ACL Anthology, OpenReview, PMLR, CVF, Semantic Scholar
- Venues: NeurIPS, ICML, ICLR, ACL, EMNLP, CVPR, AAAI, IJCAI, JMLR, TMLR, TACL, TPAMI, NMI and more
Files
Usage
from datasets import load_dataset
# All papers (combined)
papers = load_dataset("kishormorol/researchscope-papers", "papers", split="train")
# Just one source — arXiv, conference, or journal papers
arxiv = load_dataset("kishormorol/researchscope-papers", "papers", split="arxiv")
conference = load_dataset("kishormorol/researchscope-papers", "papers", split="conference")
journal = load_dataset("kishormorol/researchscope-papers", "papers", split="journal")
# Instruction tuning
instruct = load_dataset("kishormorol/researchscope-papers", "instruct", split="train")
# Per-section fine-tuning (A* papers) — e.g. train an Introduction-writing agent
sections = load_dataset("kishormorol/researchscope-papers", "sections", split="train")
intros = sections.filter(lambda r: r["section"] == "introduction")License
Paper metadata is aggregated from open sources. Text content follows the original licenses of each source (arXiv CC0, ACL CC BY, etc.). Dataset schema: CC BY 4.0.
