data: refresh 1 partition(s) (backfill)
Browse files- README.md +95 -0
- data/papers/date=2026-07-01/part.parquet +3 -0
README.md
ADDED
|
@@ -0,0 +1,95 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
pretty_name: "ArXivSignals FullText — arXiv Papers OCR'd to Markdown + Layout"
|
| 3 |
+
license: other
|
| 4 |
+
license_name: mixed-see-description
|
| 5 |
+
language:
|
| 6 |
+
- en
|
| 7 |
+
tags:
|
| 8 |
+
- arxiv
|
| 9 |
+
- scientific-papers
|
| 10 |
+
- ocr
|
| 11 |
+
- full-text
|
| 12 |
+
- document-understanding
|
| 13 |
+
- markdown
|
| 14 |
+
- layout-analysis
|
| 15 |
+
task_categories:
|
| 16 |
+
- text-generation
|
| 17 |
+
- text-retrieval
|
| 18 |
+
- feature-extraction
|
| 19 |
+
size_categories:
|
| 20 |
+
- 10K<n<100K
|
| 21 |
+
configs:
|
| 22 |
+
- config_name: papers
|
| 23 |
+
default: true
|
| 24 |
+
data_files:
|
| 25 |
+
- split: corpus
|
| 26 |
+
path: data/papers/**/*.parquet
|
| 27 |
+
---
|
| 28 |
+
|
| 29 |
+
# ArXivSignals FullText — arXiv Papers OCR'd to Markdown + Layout
|
| 30 |
+
|
| 31 |
+
A continuously-updated, day-partitioned dataset of arXiv papers **converted to
|
| 32 |
+
clean full text** by a vision OCR pipeline: each paper's PDF is rendered to
|
| 33 |
+
Markdown (headings, paragraphs, tables as HTML, math as LaTeX) plus a structured
|
| 34 |
+
**layout JSON** (typed, bounding-boxed blocks). It is the full-text companion to
|
| 35 |
+
[`taesiri/ArXivSignals`](https://huggingface.co/datasets/taesiri/ArXivSignals)
|
| 36 |
+
(metadata + LLM signal & summaries) and joins it on `paper_id`.
|
| 37 |
+
|
| 38 |
+
## How it's made
|
| 39 |
+
|
| 40 |
+
- **Source:** arXiv PDFs (publicly available).
|
| 41 |
+
- **OCR:** a document vision-language model (Baidu-family "Unlimited-OCR" via MLX),
|
| 42 |
+
run at 4-bit precision, page-by-page, producing Markdown + a raw tagged form + a
|
| 43 |
+
typed layout tree. No LLM rewriting — this is transcription, not summarization.
|
| 44 |
+
- **Scope:** papers that are also in the public [ArXivSignals](https://arxivsignals.io)
|
| 45 |
+
catalog. The corpus fills in continuously (newest-first); coverage grows daily.
|
| 46 |
+
|
| 47 |
+
## Schema (`papers` config, partitioned by `announce_date`)
|
| 48 |
+
|
| 49 |
+
| Column | Type | Notes |
|
| 50 |
+
|---|---|---|
|
| 51 |
+
| `paper_id` | string | arXiv id (joins `taesiri/ArXivSignals`) |
|
| 52 |
+
| `announce_date` | date | arXiv announcement date (partition key) |
|
| 53 |
+
| `title`, `abstract` | string | arXiv metadata |
|
| 54 |
+
| `author_names` | list<string> | display names |
|
| 55 |
+
| `authors_json` | string | full author structure (JSON) |
|
| 56 |
+
| `categories` | list<string> | arXiv categories |
|
| 57 |
+
| `primary_category` | string | |
|
| 58 |
+
| **`ocr_markdown`** | string | **the OCR'd full text** (Markdown; HTML tables; LaTeX math) |
|
| 59 |
+
| **`ocr_layout`** | string | typed + bbox'd layout blocks (JSON: `{items:[{page,type,bbox,content}]}`) |
|
| 60 |
+
| `pages` | int | page count |
|
| 61 |
+
| `md_chars`, `n_layout_blocks` | int | content stats |
|
| 62 |
+
| `ocr_tokens`, `ocr_tps`, `ocr_duration_s` | numeric | OCR throughput stats |
|
| 63 |
+
| `ocr_precision`, `ocr_model` | string | OCR configuration |
|
| 64 |
+
| `ocr_finished_at` | string | when this paper was OCR'd |
|
| 65 |
+
|
| 66 |
+
```python
|
| 67 |
+
from datasets import load_dataset
|
| 68 |
+
ds = load_dataset("taesiri/ArXivSignals-FullText", "papers", split="corpus")
|
| 69 |
+
print(ds[0]["ocr_markdown"][:500])
|
| 70 |
+
```
|
| 71 |
+
|
| 72 |
+
## Licensing, attribution & takedown
|
| 73 |
+
|
| 74 |
+
**This is important — read before redistributing.** The `ocr_markdown` /
|
| 75 |
+
`ocr_layout` fields are a machine-generated transcription of arXiv PDFs. **arXiv
|
| 76 |
+
papers are licensed individually by their authors** (arXiv's default non-exclusive
|
| 77 |
+
license, or CC-BY / CC-BY-SA / CC0 / other, per submission), and **that license
|
| 78 |
+
governs the underlying content of the OCR text.** This dataset does **not** grant
|
| 79 |
+
any rights beyond those of each source paper.
|
| 80 |
+
|
| 81 |
+
- **Metadata** (title, abstract, authors, categories) is provided under
|
| 82 |
+
[CC-BY-4.0](https://creativecommons.org/licenses/by/4.0/), consistent with the
|
| 83 |
+
companion catalog dataset.
|
| 84 |
+
- **OCR full text** is provided **for research and text/data-mining purposes**, as a
|
| 85 |
+
derived representation of publicly available papers. Redistribution or reuse of any
|
| 86 |
+
paper's text is subject to that paper's own license — check it before reusing.
|
| 87 |
+
- **Attribution:** always cite the original arXiv paper (`paper_id`), not this dataset,
|
| 88 |
+
as the source of the content.
|
| 89 |
+
- **OCR is imperfect:** expect errors in math, tables, multi-column, and scanned pages.
|
| 90 |
+
Treat the text as machine-transcribed, not authoritative.
|
| 91 |
+
- **Takedown / opt-out:** if you are an author (or rights holder) and want a paper
|
| 92 |
+
removed, open an issue / discussion on this dataset repo — it will be removed promptly.
|
| 93 |
+
|
| 94 |
+
Maintained by [@taesiri](https://huggingface.co/taesiri) · powers
|
| 95 |
+
[arxivsignals.io](https://arxivsignals.io).
|
data/papers/date=2026-07-01/part.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d2aa19fc93b887b14f535c3c8d685bbd5a37bf4f333060fd1727f022f1d07531
|
| 3 |
+
size 7469008
|