Smith42/minty-astro-ph
MINT-1T ArXiv Astro-ph An astronomy-focused subset of mlfoundations/MINT-1T-ArXiv, filtered to include only papers from the astro-ph arXiv category (including cross-listed papers). Overview Papers ~845k Total size ~804 GB Format WebDataset tar shards Shards 287 (astro-ph-00000.tar to astro-ph-00286.tar) Shard size ~3 GB each Source MINT-1T (Awadalla et al., 2024) Data Format Each tar shard contains paired files per paper:… See the full description on the dataset page: https://huggingface.co/datasets/Smith42/minty-astro-ph.
MINT-1T ArXiv Astro-ph
An astronomy-focused subset of mlfoundations/MINT-1T-ArXiv, filtered to include only papers from the astro-ph arXiv category (including cross-listed papers).
Overview
Data Format
Each tar shard contains paired files per paper:
<arxiv_id>.json— structured text and metadata<arxiv_id>.tiff— rendered figure/page image
The JSON files have the following fields:
Text and image lists are interleaved: a null in texts corresponds to an image in images at the same index, and vice versa.
Filtering Strategy
- Pre-2007 papers: Identified by arxiv ID prefix (
astro-ph*), since arXiv IDs included the category before the 2007 numbering change. - Post-2007 papers: Cross-referenced against librarian-bots/arxiv-metadata-snapshot. Included if
categoriescontainsastro-ph. - Cross-listed papers: Papers with a primary category outside astronomy (e.g.,
cs.LG,stat.ML) but withastro-phas a secondary category are included.
Usage
With WebDataset (streaming)
import webdataset as wds
dataset = wds.WebDataset(
"https://huggingface.co/datasets/<username>/astro-ph-mint/resolve/main/data/astro-ph-{00000..00286}.tar"
).decode()
for sample in dataset:
json_data = sample["json"] # paper text, images list, captions
image = sample["tiff"] # rendered figure
print(sample["__key__"]) # arxiv ID
breakDirect download
# Download a single shard
huggingface-cli download <username>/astro-ph-mint data/astro-ph-00000.tar --repo-type dataset
# Download all shards
huggingface-cli download <username>/astro-ph-mint --repo-type datasetSource
Filtered from the MINT-1T-ArXiv dataset using arxiv metadata from librarian-bots/arxiv-metadata-snapshot.
Citation
If you use this dataset, please cite the original MINT-1T paper:
@article{awadalla2024mint1t,
title={MINT-1T: Scaling Open-Source Multimodal Data by 10x: A Multimodal Dataset with One Trillion Tokens},
author={Awadalla, Anas and Le Khac, Phuc and others},
journal={arXiv preprint arXiv:2406.11271},
year={2024}
}License
This dataset inherits the CC-BY-SA-4.0 license from the source MINT-1T dataset.
