--- configs: - config_name: 1_arxiv_urls_1992_2024_gt data_files: - split: train path: "arxiv_urls_1992_2024_gt.csv" # - config_name: 2_arxiv_extracted_unique_urls_all_200_superset # data_files: # - split: train # path: "arxiv_extracted_unique_urls_all_200_superset.json" # - config_name: 3_arxiv_extracted_urls_5_formats_360k # data_files: # - split: train # path: "arxiv-mini-corpus/arxiv_extracted_urls_5_formats_360k.json" license: cc-by-4.0 task_categories: - text-retrieval language: - en tags: - arxiv - scientific-documents - url-extraction - pdf-parsing - reproducibility - pdf - latex - html - xml - markdown - text - png pretty_name: arXiv URL Extraction Benchmark & Longitudinal Multi-Format Corpus size_categories: - 100K 📋 Show JSON schema for arxiv_extracted_unique_urls_all_200_superset.json Top-level keys are arXiv IDs. Each entry contains one sub-object per extraction source (formats variants, VLM outputs, and the merged superset): ```json { "arxiv_id": { "text": { "url_count": "int", "filename": "str", "urls": ["str"] }, "html": { "url_count": "int", "filename": "str", "urls": ["str"] }, "latex": { "url_count": "int", "urls": ["str"] }, "xml": { "url_count": "int", "filename": "str", "urls": ["str"] }, "vlm_qwen": { "url_count": "int", "filename": "str", "urls": ["str"] }, "vlm_deepseek": { "url_count": "int", "filename": "str", "urls": ["str"] }, "vlm_minicpm": { "url_count": "int", "filename": "str", "urls": ["str"] }, "textwal": { "url_count": "int", "filename": "str", "urls": ["str"] }, "textwal_pypdf": { "url_count": "int", "filename": "str", "urls": ["str"] }, "textwal_pdfminer": { "url_count": "int", "filename": "str", "urls": ["str"] }, "textwalcl": { "urls": ["str"], "number_of_pages": "int", "input_tokens": "int", "output_tokens": "int", "cost_usd": "float", "runtime_sec": "float", "failed": "bool" }, "markdown": { "filename": "str", "md_path": "str", "url_count": "int", "urls": ["str"] }, "pdf": { "urls": ["str"], "url_count": "int" }, "oads": { "oads_info": ["str"], "url_count": "int" }, "superset": { "urls": ["str"], "url_count": "int" } } } ``` **Field notes:** * `text`, `html`, `xml`, `latex`, `markdown`, `pdf` — per-format extraction results, each with the URLs found (`urls`), the count (`url_count`), and, where applicable, the source `filename`/`md_path`. * `vlm_qwen`, `vlm_deepseek`, `vlm_minicpm` — extraction results from the respective vision-language models run over the paper's page images. * `textwal`, `textwal_pypdf`, `textwal_pdfminer` — text-based extraction variants using different underlying parsing libraries. * `textwalcl` — Claude-based extraction (token usage, cost, runtime, failure status) in addition to the URLs found. * `oads` — Open Access Data and Software category info for the URLs in this entry. * `superset` — the deduplicated union of URLs across all extraction sources for this paper. ### 4. The 360k Longitudinal Multi-Format Corpus **Files:** [`pdf.tar.gz,latex.tar.gz,html.tar.gz,textwal.tar.gz,xml.tar.gz,markdown.tar.gz,`](https://huggingface.co/datasets/dblind-data/arxiv-url-bench-hf/tree/main/arxiv-mini-corpus) * **Size:** ~560 GB * **Description:** The complete, multi-format synchronized common pool containing 364,744 papers. ### 5. The 360k Longitudinal Extracted URLs **File:** [`arxiv_extracted_urls_5_formats_360k.json`](https://huggingface.co/datasets/dblind-data/arxiv-url-bench-hf/blob/main/arxiv-mini-corpus/arxiv_extracted_urls_5_formats_360k.json) * **Size:** ~690 MB * **Description:** Compiled output of every URL extracted from the 360k dataset across the 5 core text formats.
📋 Show JSON schema for arxiv_extracted_urls_5_formats_360k.json Top-level keys are publication years, each mapping to arXiv IDs published that year. Each arXiv ID contains one sub-object per format, with the extracted URLs and a count: ```json { "year": { "arxiv_id": { "textwal": { "urls": ["str"], "num_urls": "int" }, "latex": { "urls": ["str"], "num_urls": "int" }, "xml": { "urls": ["str"], "num_urls": "int" }, "markdown": { "urls": ["str"], "num_urls": "int" }, "html": { "urls": ["str"], "num_urls": "int" } } } } ``` **Field notes:** * `year` — four-digit publication year (e.g. `"2016"`), used to shard the 364,744 papers. * `arxiv_id` — arXiv identifier of the paper. * `textwal`, `latex`, `xml`, `markdown`, `html` — one sub-object per format, each holding the list of extracted `urls` and the corresponding `num_urls` count.
---