Datasets:
File size: 1,229 Bytes
7fdd359 034d180 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 |
---
license: apache-2.0
task_categories:
- image-to-text
language:
- en
- de
tags:
- pdf
- receipt
- 1000+
- image
- document
size_categories:
- 1K<n<10K
---
# Openpdf-MultiReceipt-1K
**Openpdf-MultiReceipt-1K** is a dataset consisting of over 1,000 receipt documents in **PDF format**. This dataset is designed for use in image-to-text and document understanding tasks, particularly Optical Character Recognition (OCR), receipt parsing, and layout analysis.
## Notes
* No text annotations or metadata are provided — only the raw PDFs.
* Ideal for tasks requiring raw document inputs like PDF-to-Text pipelines.
## Dataset Summary
* **Size:** 1,249 receipts
* **Format:** PDF only (no extracted text)
* **Split:**
* `train`: 1.25k files
* **Languages:** Primarily English and German
* **License:** Apache 2.0
## How to Use
You can load the dataset using the `datasets` library:
```python
from datasets import load_dataset
dataset = load_dataset("prithivMLmods/Openpdf-MultiReceipt-1K")
```
Each entry in the dataset contains:
```json
{
"file": <PDF file object>
}
```
## Use Cases
* OCR model training
* Document layout detection
* Multi-lingual receipt understanding
* Data extraction from scanned documents |