license: mit
task_categories:
- image-to-text
- question-answering
- text-generation
language:
- en
tags:
- chemistry
- biology
- math
- computer-science
- physics
π arXiv Dataset Snapshot (Kaggle β Hugging Face)
This repository hosts a snapshot of the arXiv dataset, originally published on Kaggle, and re-uploaded to Hugging Face Datasets for easier access, versioning, and seamless integration with modern ML workflows.
The goal is to make large-scale arXiv metadata and paper content readily usable for LLM training, retrieval-augmented generation (RAG), citation analysis, and research analytics.
π Whatβs Inside
Depending on the Kaggle snapshot version, this dataset typically includes:
- π arXiv IDs
- π·οΈ Titles
- βοΈ Authors
- ποΈ Primary & secondary categories
- π Abstracts
- π Submission / update dates
- π DOI & journal references (when available)
β οΈ This is a snapshot β it does not auto-update with new arXiv submissions.
π’ Current Status
β Metadata is currently available (titles, authors, abstracts, categories, etc.)
π§ Full papers will be uploaded soon, category-wise (e.g., cs, math, physics, stat)
This repository will be updated incrementally as category-wise paper content is added.
π¦ Dataset Structure
A typical layout looks like:
.
βββ metadata/
β βββ arxiv-metadata-oai-snapshot.json
βββ papers/
β βββ cs/
β βββ math/
β βββ physics/
β βββ ...
βββ README.md
Or (for lightweight versions):
arxiv-metadata-oai-snapshot.json
Each record is one paper per line (JSONL) for efficient streaming and partial loading.
π€ Loading with Hugging Face
from datasets import load_dataset
# Replace with your HF username / org and dataset name
dataset = load_dataset("anuj0456/arxiv-dataset", split="train")
print(dataset[0])
Streaming (recommended for large snapshots)
dataset = load_dataset(
"anuj0456/arxiv-dataset",
split="train",
streaming=True
)
for sample in dataset.take(3):
print(sample["title"])
π§ Use Cases
- π Pretraining / continued training of language models
- π RAG pipelines (abstracts + full text)
- π Scientometrics & citation analysis
- π§ͺ Topic modeling & clustering
- π·οΈ Multi-label classification (arXiv categories)
- πΈοΈ Knowledge graph construction
βοΈ License & Attribution
- Original data source: arXiv.org
- Kaggle snapshot license: as provided by Kaggle / arXiv
- arXiv content is generally distributed under CC BY 4.0 or arXiv.org perpetual license
If you use this dataset, please cite arXiv appropriately:
@misc{arxiv,
title = {arXiv e-Print archive},
url = {https://arxiv.org}
}
π§Ύ Notes & Limitations
This dataset may contain:
- Missing fields
- Duplicate versions of the same paper
- LaTeX artifacts in full text
No guarantees of completeness or correctness
Not an official arXiv distribution
π Acknowledgements
- arXiv.org for maintaining the open research archive
- Kaggle for hosting the dataset snapshot
- Hugging Face for dataset infrastructure
π Related
- arXiv API: https://arxiv.org/help/api
- Kaggle arXiv datasets
- Hugging Face Datasets documentation
If you find this dataset useful, consider β starring the repo or sharing it with the community.
Happy researching! π