--- pretty_name: "ArXivSignals FullText — arXiv Papers OCR'd to Markdown + Layout" license: other license_name: mixed-see-description language: - en tags: - arxiv - scientific-papers - ocr - full-text - document-understanding - markdown - layout-analysis task_categories: - text-generation - text-retrieval - feature-extraction size_categories: - 10K | display names | | `authors_json` | string | full author structure (JSON) | | `categories` | list | arXiv categories | | `primary_category` | string | | | **`ocr_markdown`** | string | **the OCR'd full text** (Markdown; HTML tables; LaTeX math) | | **`ocr_layout`** | string | typed + bbox'd layout blocks (JSON: `{items:[{page,type,bbox,content}]}`) | | `pages` | int | page count | | `md_chars`, `n_layout_blocks` | int | content stats | | `ocr_tokens`, `ocr_tps`, `ocr_duration_s` | numeric | OCR throughput stats | | `ocr_precision`, `ocr_model` | string | OCR configuration | | `ocr_finished_at` | string | when this paper was OCR'd | ```python from datasets import load_dataset ds = load_dataset("taesiri/ArXivSignals-FullText", "papers", split="corpus") print(ds[0]["ocr_markdown"][:500]) ``` ## Licensing, attribution & takedown **This is important — read before redistributing.** The `ocr_markdown` / `ocr_layout` fields are a machine-generated transcription of arXiv PDFs. **arXiv papers are licensed individually by their authors** (arXiv's default non-exclusive license, or CC-BY / CC-BY-SA / CC0 / other, per submission), and **that license governs the underlying content of the OCR text.** This dataset does **not** grant any rights beyond those of each source paper. - **Metadata** (title, abstract, authors, categories) is provided under [CC-BY-4.0](https://creativecommons.org/licenses/by/4.0/), consistent with the companion catalog dataset. - **OCR full text** is provided **for research and text/data-mining purposes**, as a derived representation of publicly available papers. Redistribution or reuse of any paper's text is subject to that paper's own license — check it before reusing. - **Attribution:** always cite the original arXiv paper (`paper_id`), not this dataset, as the source of the content. - **OCR is imperfect:** expect errors in math, tables, multi-column, and scanned pages. Treat the text as machine-transcribed, not authoritative. - **Takedown / opt-out:** if you are an author (or rights holder) and want a paper removed, open an issue / discussion on this dataset repo — it will be removed promptly. Maintained by [@taesiri](https://huggingface.co/taesiri) · powers [arxivsignals.io](https://arxivsignals.io).