dblind-data commited on
Commit
71f7ebf
·
verified ·
1 Parent(s): 50bf20f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +70 -5
README.md CHANGED
@@ -3,11 +3,11 @@ configs:
3
  - config_name: 1_arxiv_urls_1992_2024_gt
4
  data_files:
5
  - split: train
6
- path: "arxiv_urls_1992_2024_gt.csv"
7
  # - config_name: 2_arxiv_extracted_unique_urls_all_200_superset
8
  # data_files:
9
  # - split: train
10
- # path: "arxiv_extracted_unique_urls_all_200_superset.json"
11
  # - config_name: 3_arxiv_extracted_urls_5_formats_360k
12
  # data_files:
13
  # - split: train
@@ -60,21 +60,67 @@ The repository is divided into two primary corpora:
60
 
61
  ---
62
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
63
  ## Dataset Structure & Storage
64
 
65
  **Warning:** The full longitudinal corpus (~360k) is exceptionally large. Ensure you have adequate storage and bandwidth before executing a full download.
66
 
67
  ### 1. The 200-Paper Benchmark Corpus
68
- **File:** [`arxiv-url-bench-200.tar.gz`](https://huggingface.co/datasets/dblind-data/arxiv-url-bench-hf/blob/main/arxiv-url-bench-200.tar.gz)
69
  * **Size:** ~2.8 GB
70
  * **Description:** Contains the raw files for the 200 benchmark papers across their different file format variants.
71
 
72
  ### 2. The 200-Paper Manual Annotations & OADS Categories
73
- **File:** [`arxiv_urls_1992_2024_gt.csv`](https://huggingface.co/datasets/dblind-data/arxiv-url-bench-hf/blob/main/arxiv_urls_1992_2024_gt.csv)
74
  * **Description:** Contains all manual ground-truth annotations for the 200-paper benchmark, featuring explicit OADS (Open Access Data and Software) category labels along with structural and contextual complexity evaluations for each URL.
75
 
76
  ### 3. The 200-Paper Unique URLs Superset (including Ground Truth)
77
- **File:** [`arxiv_extracted_unique_urls_all_200_superset.json`](https://huggingface.co/datasets/dblind-data/arxiv-url-bench-hf/blob/main/arxiv_extracted_unique_urls_all_200_superset.json)
78
  * **Size:** ~10 MB
79
  * **Description:** Registry of all extracted URLs across all format variants, including the human-annotated ground truth labels.
80
 
@@ -176,6 +222,14 @@ Top-level keys are arXiv IDs. Each entry contains one sub-object per extraction
176
 
177
  </details>
178
 
 
 
 
 
 
 
 
 
179
  ### 4. The 360k Longitudinal Multi-Format Corpus
180
  **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)
181
  * **Size:** ~560 GB
@@ -227,4 +281,15 @@ Top-level keys are publication years, each mapping to arXiv IDs published that y
227
 
228
  </details>
229
 
 
 
 
 
 
 
 
 
 
 
 
230
  ---
 
3
  - config_name: 1_arxiv_urls_1992_2024_gt
4
  data_files:
5
  - split: train
6
+ path: "arxiv-200-benchmark/arxiv_urls_1992_2024_gt.csv"
7
  # - config_name: 2_arxiv_extracted_unique_urls_all_200_superset
8
  # data_files:
9
  # - split: train
10
+ # path: "arxiv-200-benchmark/arxiv_extracted_unique_urls_all_200_superset.json"
11
  # - config_name: 3_arxiv_extracted_urls_5_formats_360k
12
  # data_files:
13
  # - split: train
 
60
 
61
  ---
62
 
63
+ ## Repository Structure
64
+
65
+ ```
66
+ ├── .gitattributes
67
+ ├── README.md
68
+ ├── arxiv-200-benchmark/
69
+ │ ├── arxiv-url-bench-200-raw-files.tar.gz
70
+ │ ├── arxiv_extracted_unique_urls_all_200_superset.json
71
+ │ ├── arxiv_urls_1992_2024_gt.csv
72
+ │ └── intermediate_results/
73
+ │ ├── stage_html_urls.json
74
+ │ ├── stage_latex_urls.json
75
+ │ ├── stage_markdown_urls.json
76
+ │ ├── stage_text_urls.json
77
+ │ ├── stage_textwal_pdfminer_urls.json
78
+ │ ├── stage_textwal_pymupdf_urls.json
79
+ │ ├── stage_textwal_pypdf_urls.json
80
+ │ ├── stage_textwalcl_urls.json
81
+ │ ├── stage_vlm_deepseek_urls.json
82
+ │ ├── stage_vlm_minicpm_urls.json
83
+ │ ├── stage_vlm_qwen_urls.json
84
+ │ └── stage_xml_grobid_urls.json
85
+ └── arxiv-mini-corpus/
86
+ ├── arxiv_extracted_urls_5_formats_360k.json
87
+ ├── html.tar.gz
88
+ ├── intermediate_results/
89
+ │ ├── longitudinal_analysis_common_360k_arxiv_ids.json
90
+ │ ├── stage1_sampled_ids.json
91
+ │ ├── stage2_pdf_textwal_urls.json
92
+ │ ├── stage3_latex_urls.json
93
+ │ ├── stage3b_latex_sources_all.json
94
+ │ ├── stage4_grobid_xml_master_summary.csv
95
+ │ ├── stage4_xml_grobid_urls.json
96
+ │ ├── stage5_markdown_marker_success.json
97
+ │ ├── stage5_markdown_urls.json
98
+ │ ├── stage6_html_urls.json
99
+ │ └── stage6_latexml_success.jsonl
100
+ ├── latex.tar.gz
101
+ ├── markdown.tar.gz
102
+ ├── pdf.tar.gz
103
+ ├── textwal.tar.gz
104
+ └── xml.tar.gz
105
+ ```
106
+
107
+ ---
108
+
109
  ## Dataset Structure & Storage
110
 
111
  **Warning:** The full longitudinal corpus (~360k) is exceptionally large. Ensure you have adequate storage and bandwidth before executing a full download.
112
 
113
  ### 1. The 200-Paper Benchmark Corpus
114
+ **File:** [`arxiv-200-benchmark/arxiv-url-bench-200-raw-files.tar.gz`](https://huggingface.co/datasets/dblind-data/arxiv-url-bench-hf/blob/main/arxiv-200-benchmark/arxiv-url-bench-200-raw-files.tar.gz)
115
  * **Size:** ~2.8 GB
116
  * **Description:** Contains the raw files for the 200 benchmark papers across their different file format variants.
117
 
118
  ### 2. The 200-Paper Manual Annotations & OADS Categories
119
+ **File:** [`arxiv-200-benchmark/arxiv_urls_1992_2024_gt.csv`](https://huggingface.co/datasets/dblind-data/arxiv-url-bench-hf/blob/main/arxiv-200-benchmark/arxiv_urls_1992_2024_gt.csv)
120
  * **Description:** Contains all manual ground-truth annotations for the 200-paper benchmark, featuring explicit OADS (Open Access Data and Software) category labels along with structural and contextual complexity evaluations for each URL.
121
 
122
  ### 3. The 200-Paper Unique URLs Superset (including Ground Truth)
123
+ **File:** [`arxiv-200-benchmark/arxiv_extracted_unique_urls_all_200_superset.json`](https://huggingface.co/datasets/dblind-data/arxiv-url-bench-hf/blob/main/arxiv-200-benchmark/arxiv_extracted_unique_urls_all_200_superset.json)
124
  * **Size:** ~10 MB
125
  * **Description:** Registry of all extracted URLs across all format variants, including the human-annotated ground truth labels.
126
 
 
222
 
223
  </details>
224
 
225
+ ### 3b. The 200-Paper Intermediate, Per-Stage Extraction Results
226
+ **Folder:** [`arxiv-200-benchmark/intermediate_results/`](https://huggingface.co/datasets/dblind-data/arxiv-url-bench-hf/tree/main/arxiv-200-benchmark/intermediate_results)
227
+ * **Description:** Per-stage/per-method URL extraction outputs for the 200-paper benchmark, prior to being merged into the unique URLs superset (item 3, above). Each file corresponds to a single extraction source:
228
+ * `stage_html_urls.json`, `stage_latex_urls.json`, `stage_markdown_urls.json`, `stage_text_urls.json`, `stage_xml_grobid_urls.json` — per-format extraction results.
229
+ * `stage_textwal_pypdf_urls.json`, `stage_textwal_pdfminer_urls.json`, `stage_textwal_pymupdf_urls.json` — text-based extraction variants using different underlying PDF-parsing libraries.
230
+ * `stage_textwalcl_urls.json` — Claude-based extraction results.
231
+ * `stage_vlm_qwen_urls.json`, `stage_vlm_deepseek_urls.json`, `stage_vlm_minicpm_urls.json` — extraction results from the respective vision-language models run over the paper's page images.
232
+
233
  ### 4. The 360k Longitudinal Multi-Format Corpus
234
  **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)
235
  * **Size:** ~560 GB
 
281
 
282
  </details>
283
 
284
+ ### 6. The 360k Longitudinal Corpus Intermediate, Per-Stage Pipeline Files
285
+ **Folder:** [`arxiv-mini-corpus/intermediate_results/`](https://huggingface.co/datasets/dblind-data/arxiv-url-bench-hf/tree/main/arxiv-mini-corpus/intermediate_results)
286
+ * **Description:** Per-stage outputs from the pipeline used to build the 360k longitudinal corpus, prior to compilation into the 5-formats extraction file (item 5, above):
287
+ * `stage1_sampled_ids.json` — the initial stratified sample of arXiv IDs.
288
+ * `stage2_pdf_textwal_urls.json` — URLs extracted from PDF text.
289
+ * `stage3_latex_urls.json` / `stage3b_latex_sources_all.json` — LaTeX-derived URLs and the full set of retrieved LaTeX sources.
290
+ * `stage4_xml_grobid_urls.json` / `stage4_grobid_xml_master_summary.csv` — URLs extracted from GROBID-generated XML, with a master run summary.
291
+ * `stage5_markdown_urls.json` / `stage5_markdown_marker_success.json` — Markdown-derived URLs and Marker conversion success log.
292
+ * `stage6_html_urls.json` / `stage6_latexml_success.jsonl` — HTML-derived URLs and LaTeXML conversion success log.
293
+ * `longitudinal_analysis_common_360k_arxiv_ids.json` — the final common pool of 364,744 arXiv IDs present across all six formats.
294
+
295
  ---