dblind-data commited on
Commit
58ff6ad
·
verified ·
1 Parent(s): fef2096

update readme with schema previews for json files

Browse files
Files changed (1) hide show
  1. README.md +139 -1
README.md CHANGED
@@ -35,7 +35,6 @@ pretty_name: arXiv URL Extraction Benchmark & Longitudinal Multi-Format Corpus
35
  size_categories:
36
  - 100K<n<1M
37
  ---
38
-
39
  # arXiv URL Extraction Benchmark & Longitudinal Corpus
40
 
41
  ## Dataset Description
@@ -79,6 +78,104 @@ The repository is divided into two primary corpora:
79
  * **Size:** ~10 MB
80
  * **Description:** Registry of all extracted URLs across all format variants, including the human-annotated ground truth labels.
81
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
82
  ### 4. The 360k Longitudinal Multi-Format Corpus
83
  **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)
84
  * **Size:** ~560 GB
@@ -89,4 +186,45 @@ The repository is divided into two primary corpora:
89
  * **Size:** ~690 MB
90
  * **Description:** Compiled output of every URL extracted from the 360k dataset across the 5 core text formats.
91
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
92
  ---
 
35
  size_categories:
36
  - 100K<n<1M
37
  ---
 
38
  # arXiv URL Extraction Benchmark & Longitudinal Corpus
39
 
40
  ## Dataset Description
 
78
  * **Size:** ~10 MB
79
  * **Description:** Registry of all extracted URLs across all format variants, including the human-annotated ground truth labels.
80
 
81
+ <details>
82
+ <summary><strong>📋 Show JSON schema for <code>arxiv_extracted_unique_urls_all_200_superset.json</code></strong></summary>
83
+
84
+ Top-level keys are arXiv IDs. Each entry contains one sub-object per extraction source (raw formats, OCR/VLM outputs, and the merged superset):
85
+
86
+ ```json
87
+ {
88
+ "arxiv_id": {
89
+ "text": {
90
+ "url_count": "int",
91
+ "filename": "str",
92
+ "urls": ["str"]
93
+ },
94
+ "html": {
95
+ "url_count": "int",
96
+ "filename": "str",
97
+ "urls": ["str"]
98
+ },
99
+ "latex": {
100
+ "url_count": "int",
101
+ "urls": ["str"]
102
+ },
103
+ "xml": {
104
+ "url_count": "int",
105
+ "filename": "str",
106
+ "urls": ["str"]
107
+ },
108
+ "vlm_qwen": {
109
+ "url_count": "int",
110
+ "filename": "str",
111
+ "urls": ["str"]
112
+ },
113
+ "vlm_deepseek": {
114
+ "url_count": "int",
115
+ "filename": "str",
116
+ "urls": ["str"]
117
+ },
118
+ "vlm_minicpm": {
119
+ "url_count": "int",
120
+ "filename": "str",
121
+ "urls": ["str"]
122
+ },
123
+ "textwal": {
124
+ "url_count": "int",
125
+ "filename": "str",
126
+ "urls": ["str"]
127
+ },
128
+ "textwal_pypdf": {
129
+ "url_count": "int",
130
+ "filename": "str",
131
+ "urls": ["str"]
132
+ },
133
+ "textwal_pdfminer": {
134
+ "url_count": "int",
135
+ "filename": "str",
136
+ "urls": ["str"]
137
+ },
138
+ "textwalcl": {
139
+ "urls": ["str"],
140
+ "number_of_pages": "int",
141
+ "input_tokens": "int",
142
+ "output_tokens": "int",
143
+ "cost_usd": "float",
144
+ "runtime_sec": "float",
145
+ "failed": "bool"
146
+ },
147
+ "markdown": {
148
+ "filename": "str",
149
+ "md_path": "str",
150
+ "url_count": "int",
151
+ "urls": ["str"]
152
+ },
153
+ "pdf": {
154
+ "urls": ["str"],
155
+ "url_count": "int"
156
+ },
157
+ "oads": {
158
+ "oads_info": ["str"],
159
+ "url_count": "int"
160
+ },
161
+ "superset": {
162
+ "urls": ["str"],
163
+ "url_count": "int"
164
+ }
165
+ }
166
+ }
167
+ ```
168
+
169
+ **Field notes:**
170
+ * `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`.
171
+ * `vlm_qwen`, `vlm_deepseek`, `vlm_minicpm` — extraction results from the respective vision-language models run over the paper's page images.
172
+ * `textwal`, `textwal_pypdf`, `textwal_pdfminer` — text-based extraction variants using different underlying parsing libraries.
173
+ * `textwalcl` — Claude-based extraction (token usage, cost, runtime, failure status) in addition to the URLs found.
174
+ * `oads` — Open Access Data and Software category info for the URLs in this entry.
175
+ * `superset` — the deduplicated union of URLs across all extraction sources for this paper, used as the basis for ground-truth comparison.
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
 
186
  * **Size:** ~690 MB
187
  * **Description:** Compiled output of every URL extracted from the 360k dataset across the 5 core text formats.
188
 
189
+ <details>
190
+ <summary><strong>📋 Show JSON schema for <code>arxiv_extracted_urls_5_formats_360k.json</code></strong></summary>
191
+
192
+ 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:
193
+
194
+ ```json
195
+ {
196
+ "year": {
197
+ "arxiv_id": {
198
+ "textwal": {
199
+ "urls": ["str"],
200
+ "num_urls": "int"
201
+ },
202
+ "latex": {
203
+ "urls": ["str"],
204
+ "num_urls": "int"
205
+ },
206
+ "xml": {
207
+ "urls": ["str"],
208
+ "num_urls": "int"
209
+ },
210
+ "markdown": {
211
+ "urls": ["str"],
212
+ "num_urls": "int"
213
+ },
214
+ "html": {
215
+ "urls": ["str"],
216
+ "num_urls": "int"
217
+ }
218
+ }
219
+ }
220
+ }
221
+ ```
222
+
223
+ **Field notes:**
224
+ * `year` — four-digit publication year (e.g. `"2016"`), used to shard the 364,744 papers.
225
+ * `arxiv_id` — arXiv identifier of the paper.
226
+ * `textwal`, `latex`, `xml`, `markdown`, `html` — one sub-object per format, each holding the list of extracted `urls` and the corresponding `num_urls` count.
227
+
228
+ </details>
229
+
230
  ---